How can i find the position of a subimage in larger image ?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mariem Harmassi
el 13 de Feb. de 2013
Respondida: Image Analyst
el 7 de Nov. de 2015
Hello I have a sub-image X ,which is a subimage of Y .How can find the position of this subiamge in the image Y ? Can anyone help me
0 comentarios
Respuesta aceptada
Thorsten
el 13 de Feb. de 2013
F = im2double(imread('cameraman.tif'));
I = rand(512);
I([1:size(F,1)] + 30, [1:size(F,2)] + 80) = F;
disp('Search target using imfilter, this may take some time...')
If = imfilter(I, F);
[maxval ind] = max(If(:));
[y x] = ind2sub(size(If), ind);
imshow(I)
hold on
plot(x, y, 'rx')
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!