Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (2)
PCA people Face identified Shi
no vote
% A sample script, which shows the usage of functions, included in
ch78928
2016-08-23
1
1
FLD people Face identified Shi
no vote
% A sample script, which shows the usage of functions, included in % FLD-based face recognition system (Fisherface method) % % See also: CREATEDATABASE, FISHERFACECORE, RECOGNITION % Original version by Amir Hossein Omidvarnia, October 2007 % clear all clc close all % You can customize and fix initial directory paths TrainDatabasePath = uigetdir(strcat(matlabroot,'work'), 'Select training database path' ); TestDatabasePath = uigetdir(strcat(matlabroot,'work'), 'Select test database path'); prompt = {'Enter test image name (a number between 1 to 10):'}; dlg_title = 'Input of FLD-Based Face Recognition System'; num_lines= 1; def = {'1'}; TestImage = inputdlg(prompt,dlg_title,num_lines,def); TestImage = strcat(TestDatabasePath,'',char(TestImage),'.jpg'); im = imread(TestImage); . . .
ch78928
2016-08-23
1
1
No more~