I am working on signature verification system, i want to preprocess the scanned signature images, i have created following function, tell me it is useful or not?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
function preprocessed
I=imread('image');
imshow(I)
I2=rgb2gray(I);
figure,imshow(I2)
I3=im2bw(I2);
figure,imshow(I3)
I4=medfilt2(I3);
figure,imshow(I4)
imwrite(I4,fullfile('path','image name'));
end
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!