I have binary fingerprint image . I want to count the number of transform 1 to 0 between 2 point . the value of two point is 0. Can any bode help me for write matlab
code of it?
my picture is here:
My points are a , b . I draw line between a , b
I have binary fingerprint image . I want to count the number of transform 1 to 0 between 2 point . the value of two point is 0. Can any bode help me for write matlab
code of it?
my picture is here:
My points are a , b . I draw line between a , b
Use improfile
:
c = diff(improfile(I,x,y));
where x
and y
are vectors of end point coordinates of the line. Then count nonzero elements in c
.