Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
error in cropping image
조회 수: 1 (최근 30일)
이전 댓글 표시
I have detected surf features, when i try to imcrop the surf detected region, the cropped image does not have that surf point.
plz assist where i made wrong
i need the crooped image with surf points
clc
clear all
close all
[p,f]=uigetfile();
I=imread(strcat(f,p));
I1=rgb2gray(I);
points = detectSURFFeatures(I1);
imshow(I); hold on;
plot(points.selectStrongest(10))
S=imcrop((plot(points.selectStrongest(10))));
figure,imshow(S)
댓글 수: 1
답변 (1개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!