How to locate valley points in palm print using matlab

2 visualizaciones (últimos 30 días)
Shirah
Shirah el 11 de Mayo de 2013
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

Respuestas (1)

Image Analyst
Image Analyst el 11 de Mayo de 2013
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.

Community Treasure Hunt

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

Start Hunting!

Translated by