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

13 ビュー (過去 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 Center および File ExchangeComputer Vision with Simulink についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by