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?

2 次查看(过去 30 天)
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 个)

类别

Help CenterFile Exchange 中查找有关 Simulink Environment Customization 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by