How origin is moved to the centroid of an image

10 次查看(过去 30 天)
I have an image say NXN and i want to move the origin of the image to the centroid location.
  4 个评论
Matt J
Matt J 2021-2-11
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 2021-2-11
yes i want to move the blob to the center of the image

请先登录,再进行评论。

采纳的回答

Matt J
Matt J 2021-2-11
编辑:Matt J 2021-2-11
newImage = imtranslate(oldImage,[134,235] - [155,250])
  3 个评论
Abul Abbas
Abul Abbas 2021-2-11
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 2021-2-15
(this latter comment was posted as a separate question)

请先登录,再进行评论。

更多回答(1 个)

Matt J
Matt J 2021-2-11
编辑:Matt J 2021-2-11
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 个评论
Abul Abbas
Abul Abbas 2021-2-11
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]

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by