필터 지우기
필터 지우기

How to locate valley points in palm print using matlab

조회 수: 1 (최근 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