Sir, I have calculated feature of dorsal hand vein using eiganvalue algorithm, features are stored in feature variable in following code this is for a single image i want to do the same operation on 10 images the how i can?
Afficher commentaires plus anciens
%% Detect feature points and show the 50 strongest ones by eiganvalue algorithm
% Find Corner Points Using the Eigenvalue Algorithm
corners = detectMinEigenFeatures(bw);
% Display 50 strongest points
strongest=corners.selectStrongest(50);
imshow(bw);
hold on;
title('Eigenvalue Algorithm');
plot(corners.selectStrongest(50));
feature=strongest.Location;
5 commentaires
Ali Elsseid
le 14 Avr 2019
please can you send to me the algorithm
Image Analyst
le 14 Avr 2019
Ali:
It looks like his algorithm is already given in his question above. And the answer to his question "do the same operation on 10 images the how i can" is given in my Answer below (it's in the FAQ).
Ali Elsseid
le 14 Avr 2019
please I need Dorsal hand vein identification algorithm by using MATLAB
Ali Elsseid
le 14 Avr 2019
THANK YOU FOR YOUR ANSWER
Rik
le 3 Oct 2019
Posting your request in a flag is not going to help get you an answer.
Réponses (2)
Image Analyst
le 14 Avr 2019
0 votes
See the FAQ for code samples to process a sequence of files: click here
Image Analyst
le 3 Oct 2019
0 votes
Try this link: Search Vision Bib for dorsal vein
Catégories
En savoir plus sur Computer Vision Toolbox dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!