필터 지우기
필터 지우기

Feature matching in Matlab with multiple images

조회 수: 4 (최근 30일)
Davide Baitelli
Davide Baitelli 2018년 1월 9일
Hi,
this code, taken from Matlab documentation, detects keypoints, extracts features and matches vectors of features.
points1 = detectSURFFeatures(im1);
[featuresIm1, valid_points] = extractFeatures(im1, points1);
points2 = detectSURFFeatures(im2);
[featuresIm2, valid_points] = extractFeatures(im2, points2);
indexPairs = matchFeatures(featuresIm1, featuresIm2)
But what if I need to match the features of a test image with those of a training set? I'm currently calling matchPoints once for each train image, speeding up the process with a parfor. Is there a better (less computational time) and smart way to do this?

답변 (0개)

카테고리

Help CenterFile Exchange에서 Feature Detection and Extraction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by