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 件のコメント
Rik
Rik 2019 年 10 月 3 日
Posting your request in a flag is not going to help get you an answer.

サインインしてコメントする。

回答 (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 Center および File ExchangeComputer Vision Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by