필터 지우기
필터 지우기

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 CenterFile Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by