detect values from hough transform
Mostrar comentarios más antiguos
i have applied hough transform on my palm print image(which i am using for authentication). i want to extract the values got from hough transform so that i can apply euclidean distance on it. can anyone please tell me how to detect/get the values from hough transform
Respuestas (1)
Image Analyst
el 1 de Abr. de 2017
0 votos
Simply accept the values hough() returns to you. From the help:
[H,theta,rho] = hough(BW) computes the Standard Hough Transform (SHT) of the binary image BW.
So make sure there are three variables on the left hand side to accept the values of the hough transform or else they'll be thrown away.
5 comentarios
Shweta Naiskar
el 1 de Abr. de 2017
Image Analyst
el 1 de Abr. de 2017
Attach "R" so I can run your code. And tell me what distances you want to compare - between what lines or blobs/regions in the image. Or do you want to compute MSE using immse()?
Shweta Naiskar
el 2 de Abr. de 2017
Image Analyst
el 2 de Abr. de 2017
I still can't run your code. You forgot to attach 'C:\Users\DELL\Desktop\PalmVein\DataBase\Train\user 2\IMG_002 (5).jpg' and 'C:\Users\DELL\Desktop\PalmVein\DataBase\Train\user 2\IMG_005 (5).jpg'
Shweta Naiskar
el 3 de Abr. de 2017
Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!