How to locate valley points in palm print using matlab

2 ビュー (過去 30 日間)
Shirah
Shirah 2013 年 5 月 11 日
Hello,
with respect to the above images, how can I identify and locate valley points as shown in the second picture using matlab.
Thank You

回答 (1 件)

Image Analyst
Image Analyst 2013 年 5 月 11 日
Normally we don't give extensive algorithm development advice, though here's what I'd try
  1. threshold the image: binaryImage =grayImage > 0
  2. find the centroid with regionprops()
  3. call bwboundaries() to get edge coordinates
  4. remove all coordinates with y values above the centroid in the image.
  5. get a distance vector giving distance from centroid to all edge coordinates
  6. find the two biggest distances. They will go from center of palm to tips of outer fingers
  7. extract only distances between these points, which will go across the fingers
  8. threshold this to find distances shorter than some amount
  9. call regionprops() on that go get the centroid of each valley
Give it a try.
  2 件のコメント
Shirah
Shirah 2013 年 5 月 12 日
Thanks for replying. I will give it a try and revert back if there is any query. Thanks again.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by