How origin is moved to the centroid of an image

7 views (last 30 days)
I have an image say NXN and i want to move the origin of the image to the centroid location.
  4 Comments
Matt J
Matt J on 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 on 11 Feb 2021
yes i want to move the blob to the center of the image

Sign in to comment.

Accepted Answer

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

Sign in to comment.

More Answers (1)

Matt J
Matt J on 11 Feb 2021
Edited: Matt J on 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 Comment
Abul Abbas
Abul Abbas on 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]

Sign in to comment.

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!