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?
4 views (last 30 days)
Show older comments
%% 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 Comments
Answers (2)
Image Analyst
on 14 Apr 2019
See the FAQ for code samples to process a sequence of files: click here
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!