Change the coordinates of an image

4 visualizaciones (últimos 30 días)
Ayoub EZZAKI
Ayoub EZZAKI el 17 de Abr. de 2018
Comentada: Rena Berman el 12 de Dic. de 2019
Good morning to everyone
I have an 600 x 400 Gray image, The center of course is the pixel of coordinates [600/2 , 400/2], how can i have the coordinates starting in this pixels ( in other word, the central pixel will be with [0 , 0] coordinates like an axis) ??
Thank you

Respuestas (1)

jonas
jonas el 17 de Abr. de 2018
dx=-300;
dy=-200;
imshow(I,'Xdata',[1 size(I,1)]+dx,'Ydata',[1 size(I,2)]+dy)

alternatively you can use surf()

Categorías

Más información sobre Geometric Transformation and Image Registration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by