How to extract column and row index and the corresponding value from a matrix?

조회 수: 7 (최근 30일)
Noxi
Noxi 2019년 6월 23일
댓글: Andrei Bobrov 2019년 6월 26일
I have a huge matrix of pixel values from an image converted into a text file. I need to convert this matrix into a table with column index, row index and the element as seperate columns of the table. How do I do this?
I'm doing this to figure out of the Centre of mass of a 2D projection of an object in the image. The image is a binary image with a single object in white and the background in black. Is there any other way to do this?
  댓글 수: 2
Noxi
Noxi 2019년 6월 23일
Like this:
from -
0 1 4
7 6 0
to -
row column element
1 1 0
1 2 1
1 3 4
2 1 7
2 2 6
2 3 0

댓글을 달려면 로그인하십시오.

답변 (2개)

madhan ravi
madhan ravi 2019년 6월 23일
편집: madhan ravi 2019년 6월 23일
m = [0 1 4
7 6 0];
[Rows,Columns] = ind2sub(size(m),(1:numel(m))');
Wanted = [Rows,Columns,m(:)];
Wantedtable = sortrows(array2table(Wanted,'VariableNames',{'Rows','Columns','Elements'}),1)

Andrei Bobrov
Andrei Bobrov 2019년 6월 23일
A = [0 1 4
7 6 0];
out = sortrows([fullfact(size(A)),A(:)]);

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by