Finding coordinates From image
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zainab Afreen
el 13 de En. de 2021
Comentada: Zainab Afreen
el 13 de En. de 2021
hello. I'm working on eye detection and I wanna know how can I find coordinates of a picture automatically? Can anyone help me?
3 comentarios
Respuesta aceptada
KALYAN ACHARJYA
el 13 de En. de 2021
You have do little effort to localize the eye section in the image. You may use imfindcircles function (Read about CHT Image Processing)
[centers,radii, metric] = imfindcircles(grayImage,[r_min,r_max],'Sensitivity',sense_val);
Try with possible pixels radii values to localize eye on face image (Probable Values, may be r_min=60 or r_max=100), control the sensitivity for circular object detection (Val 0 to 1), try with sense_val 0.96 or near in your case.
Once the circular object detected, draw circles on it by considering its evalueted centers and radii values
viscircles(centers, radii,'EdgeColor','b');
There are many literatures avalible in public domain related to eye detection (Human face)
Try for other tasks yourself, any specific question you can ask in this forum.
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with Image Processing Toolbox 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!