How to find the point on the center of nose from an image ?

조회 수: 1 (최근 30일)
Ali Zeeshan
Ali Zeeshan 2014년 1월 16일
댓글: Ali Zeeshan 2014년 1월 21일
I have detected the nose from an image , nose i want a center point of that nose part , can someone help me in this ?

채택된 답변

Image Analyst
Image Analyst 2014년 1월 16일
By "detected" I assume you have a binary image that says whether a pixel is a nose pixel or not. So just pass that binary image into regionprops() and ask for the Centroid, or WeightedCentroid.
measurements = regionprops(binaryImage, 'Centroid', 'WeightedCentroid');
allCentroids = [measurements.Centroid];
allWeightedCentroids = [measurements.WeightedCentroid];
  댓글 수: 4
Ali Zeeshan
Ali Zeeshan 2014년 1월 21일
yes thanks i got it on blob # 2
Ali Zeeshan
Ali Zeeshan 2014년 1월 21일
can you help me out in iris detection , i have eye image now i need to detect iris from it .

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by