Clear Filters
Clear Filters

How to fing COG?

6 views (last 30 days)
Jim
Jim on 23 May 2012
Hi,
How to find the center of gravity of image along the x direction of the line?
Thanks in advance

Accepted Answer

Image Analyst
Image Analyst on 23 May 2012
It's just the usual formula, the sum(x .* intensity) / sum(intensity). It's like the intensity cancels out and you're left with the weighted x value.
  2 Comments
Jim
Jim on 24 May 2012
How can I do it to all the rows in a image and save it
Image Analyst
Image Analyst on 24 May 2012
oneRowIntensity = image2D(theRowYouWant, :);
x = 1:size(image2D, 1);
Then use the formula I gave you, and save it using save() or imwrite() or into a variable. Put that into a loop if you want to do it for all the rows that you want to do it over.

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!