How origin is moved to the centroid of an image

9 visualizzazioni (ultimi 30 giorni)
I have an image say NXN and i want to move the origin of the image to the centroid location.
  4 Commenti
Matt J
Matt J il 11 Feb 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 il 11 Feb 2021
yes i want to move the blob to the center of the image

Accedi per commentare.

Risposta accettata

Matt J
Matt J il 11 Feb 2021
Modificato: Matt J il 11 Feb 2021
newImage = imtranslate(oldImage,[134,235] - [155,250])
  3 Commenti
Abul Abbas
Abul Abbas il 11 Feb 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 il 15 Feb 2021
(this latter comment was posted as a separate question)

Accedi per commentare.

Più risposte (1)

Matt J
Matt J il 11 Feb 2021
Modificato: Matt J il 11 Feb 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 Commento
Abul Abbas
Abul Abbas il 11 Feb 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]

Accedi per commentare.

Categorie

Scopri di più su Images in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by