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?

1 次查看(过去 30 天)
%% 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 个评论

请先登录,再进行评论。

回答(2 个)

Image Analyst
Image Analyst 2019-4-14
See the FAQ for code samples to process a sequence of files: click here

Image Analyst
Image Analyst 2019-10-3

类别

Help CenterFile Exchange 中查找有关 Image Processing and Computer Vision 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by