Effacer les filtres
Effacer les filtres

How to locate valley points in palm print using matlab

2 vues (au cours des 30 derniers jours)
Shirah
Shirah le 11 Mai 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

Réponses (1)

Image Analyst
Image Analyst le 11 Mai 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.
  2 commentaires
Shirah
Shirah le 12 Mai 2013
Thanks for replying. I will give it a try and revert back if there is any query. Thanks again.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by