How origin is moved to the centroid of an image

7 visualizaciones (últimos 30 días)
Abul Abbas
Abul Abbas el 11 de Feb. de 2021
Comentada: Rik el 15 de Feb. de 2021
I have an image say NXN and i want to move the origin of the image to the centroid location.
  4 comentarios
Matt J
Matt J el 11 de Feb. de 2021
Centroid is the centre of mass of the blob, say i have the image centre at [134,235]
If the size of your image is 267 x 469 then its center will always be at [134,235]. It cannot "move".
Maybe you mean you want to move the blob to the center of the image?
Abul Abbas
Abul Abbas el 11 de Feb. de 2021
yes i want to move the blob to the center of the image

Iniciar sesión para comentar.

Respuesta aceptada

Matt J
Matt J el 11 de Feb. de 2021
Editada: Matt J el 11 de Feb. de 2021
newImage = imtranslate(oldImage,[134,235] - [155,250])
  3 comentarios
Abul Abbas
Abul Abbas el 11 de Feb. de 2021
how to substitute p(x/a+x1,y/a+x2) to p(x,y),where p(x,y) is original image, x1 and x2 are the centroid of p(x,y),x1=m10/m00,x2=m01/m00,a=sqrt(β/m00),β is a predetermined value. In fact, this is doing scale and translation normalization
Rik
Rik el 15 de Feb. de 2021
(this latter comment was posted as a separate question)

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 11 de Feb. de 2021
Editada: Matt J el 11 de Feb. de 2021
The image coordinate system is not something that is given to you, and that you have to "move". It is something you create using imref2d,
You can use it to put your origin anywhere you want.
  1 comentario
Abul Abbas
Abul Abbas el 11 de Feb. de 2021
I have the image centre at [134,235] and my centroid location is at [155,250]. I want to move the image centre from [134,235] to [155,250]

Iniciar sesión para comentar.

Categorías

Más información sobre Images 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