Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (3)
FACE RECOGNITION
no vote
Contents: A.zip: code compatible with Matlab 2007a and older B.zip: code compatible with Matlab 2007b and newer data.zip: test data instructions.pdf: this file Instructions: Unzip the selected file (A.zip or B.zip) in Matlab current directory (C:/.../Matlab/work is the default one). Type the name of main function on Matlab command window. Now a simple and intuitive GUI should appear. You can use images/data present in data.zip: just unzip them in Matlab current directory.
sakshi515175
2016-08-23
1
1
TRAFFIC SIGN RECOGNITION
no vote
function x=blobAnalysis(a) %a=imread('stoproad.jpg'); x=a; a(:,:,1) = medfilt2(a(:,:,1), [3 3]); a(:,:,2) = medfilt2(a(:,:,2), [3 3]); a(:,:,3) = medfilt2(a(:,:,3), [3 3]); [r c d]=size(a); check=1; i1=0;j1=0; i2=0;j2=0; %for k=1:1;     for i=1:r         for j=1:c             
sakshi515175
2016-08-23
2
1
signature recognition
no vote
  % First, select an input image clicking on "Select image". % Then you can %   - add this image to database (click on "Add selected image to database" %   - perform signature recognition (click on "Signature Recognition" button) %     Note: If you want to perform signature recognition database has to include %     at least one image. % % If you choose to add image to database, a positive integer (signature ID) is
sakshi515175
2016-08-23
3
1
No more~