image processing - Marking fingerprint minutiae - Matlab -


i have project on fingerprint matching , got stuck on marking minutiae.
have binarized image, closed , thinned , have use crossing number find termination , bifurcation points. how mark them on image , store them? thanks!

you should bwmorph - function allows perform sorts of morphological operations on images.

ep = bwmorph( bw, 'endpoints' ); %// returns mask "terminations" bp = bwmorph( bw, 'branchpoints' ); %// returns mask "bifurcations" 

to coordinates of special points masks, can use find:

[epy epx] = find( ep ); %// x,y coordinates of endpoints. 

Comments

Popular posts from this blog

ruby on rails - RuntimeError: Circular dependency detected while autoloading constant - ActiveAdmin.register Role -

c++ - OpenMP unpredictable overhead -

javascript - Wordpress slider, not displayed 100% width -