필터 지우기
필터 지우기

Finding coordinates From image

조회 수: 2 (최근 30일)
Zainab Afreen
Zainab Afreen 2021년 1월 13일
댓글: Zainab Afreen 2021년 1월 13일
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
Zainab Afreen
Zainab Afreen 2021년 1월 13일
Task 1:
1.First crop the region of interest i.e. left and right eye seperatly.
2. Then find coordinates (x,y) for each glint. you can use image processing techniques to detect four glints. like RANSAC, image thresholding, etc.
Zainab Afreen
Zainab Afreen 2021년 1월 13일

댓글을 달려면 로그인하십시오.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 1월 13일
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.
  댓글 수: 1
Zainab Afreen
Zainab Afreen 2021년 1월 13일
Thank you so Much for this kindness.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by