Filter löschen
Filter löschen

Find center of mass of parts of a matrix

23 Ansichten (letzte 30 Tage)
OH
OH am 28 Nov. 2016
Kommentiert: OH am 29 Nov. 2016
Hi, Let us say that I have a matrix as shown below:
Then I apply a treshold to this matrix and am left with a region of interest. As such:
How can I find the center of mass for this region of interest (using values from the corresponding indexes in the first matrix) and the location of this center of mass in the original matrix?
Thanks for any help

Akzeptierte Antwort

Guillaume
Guillaume am 28 Nov. 2016
Bearbeitet: Guillaume am 28 Nov. 2016
Well, go back to the definition of the centre of mass, which is just a weighted mean:
%inputs:
%originalmatrix: the original matrix
%binarisedmatrix = originalmatrix > threshold; %the thresholded matrix, a logical array
[rows, cols] = ndgrid(1:size(originalmatrix, 1), 1:size(originalmatrix, 2));
rowcentre = sum(rows(binarisedmatrix) .* originalmatrix(binarisedmatrix)) / sum(originalmatrix(binarisedmatrix));
colcentre = sum(cols(binarisedmatrix) .* originalmatrix(binarisedmatrix)) / sum(originalmatrix(binarisedmatrix));
  4 Kommentare
Guillaume
Guillaume am 28 Nov. 2016
Works fine for me:
originalmatrix = ones(10);
originalmatrix(4:7, 4:7) = 2 %semicolon missing for display
binarisedmatrix = originalmatrix > 1 %semicolon missing for display
[rows, cols] = ndgrid(1:size(originalmatrix, 1), 1:size(originalmatrix, 2));
rowcentre = sum(rows(binarisedmatrix) .* originalmatrix(binarisedmatrix)) / sum(originalmatrix(binarisedmatrix)) %semicolon missing for display
colcentre = sum(cols(binarisedmatrix) .* originalmatrix(binarisedmatrix)) / sum(originalmatrix(binarisedmatrix)) %semicolon missing for display
returns 5.5 for both rowcentre and colcentre
OH
OH am 29 Nov. 2016
You are right, it works. I had just made a silly mistake. Thanks!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

KSSV
KSSV am 28 Nov. 2016
doc mean
  1 Kommentar
OH
OH am 28 Nov. 2016
Hey, thanks. I know how to get the mean value of the region of interest: let us call the first matrix A and the tresholded matrix, where the region of interest indexes = 1 and outside region indexes = 0,B. Then I find the mean value by: mean(A(B==1))
However, I need to find the location of the center of mass in A

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by