Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

error in cropping image

3 visualizaciones (últimos 30 días)
FIR
FIR el 14 de Feb. de 2013
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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 comentario
Walter Roberson
Walter Roberson el 14 de Feb. de 2013
Please only indent code and not text when you are posting.

Respuestas (1)

Walter Roberson
Walter Roberson el 14 de Feb. de 2013
Code that uses "clear all" is always improperly designed.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by