How can I plot the detected parabola on the image?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello
I've tried to detect the parabola form of the Eyelid from the normalized iris image using Hough Transform as it is coded in the following file exchange: http://www.mathworks.com/matlabcentral/fileexchange/15841-parabola-detection-using-hough-transform/content/oughparabola.m
Put I don't know how can I use the output of this code to draw the fitted parabola on the normalized iris image. The normalized iris image and it's edge image are attached
Respuestas (1)
Image Analyst
el 12 de Jun. de 2015
If you have the x,y coordinates, just put hold on and call plot:
hold on;
plot(x, y, 'b-', 'LineWidth', 2);
2 comentarios
Image Analyst
el 12 de Jun. de 2015
I don't know that program. Why don't you just get each segment, and call the built-in polyfit on it? then look at the residuals and figure that the curve with the lowest residuals is the best fit and is the curve for the upper eyelid that you want and plot that with plot(x,y). It seems simpler to me.
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!