Borrar filtros
Borrar filtros

Find center of mass of parts of a matrix

23 visualizaciones (últimos 30 días)
OH
OH el 28 de Nov. de 2016
Comentada: OH el 29 de Nov. de 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

Respuesta aceptada

Guillaume
Guillaume el 28 de Nov. de 2016
Editada: Guillaume el 28 de Nov. de 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 comentarios
Guillaume
Guillaume el 28 de Nov. de 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 el 29 de Nov. de 2016
You are right, it works. I had just made a silly mistake. Thanks!

Iniciar sesión para comentar.

Más respuestas (1)

KSSV
KSSV el 28 de Nov. de 2016
doc mean
  1 comentario
OH
OH el 28 de Nov. de 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

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by