Converting an image into three column format

I have an image file of size 1000X1000 array. I need to convert it to a three column format with the first two columns representing coordinates and the third column representing the pixel value or in my case height/intensity values. Any options for doing this?
Bharath

Antworten (1)

Walter Roberson
Walter Roberson am 1 Jan. 2013

1 Stimme

[r, c] = find( true(size(YourArray));
col3 = [r(:), c(:), YourArray(:)];

Kategorien

Mehr zu Convert Image Type finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 1 Jan. 2013

Community Treasure Hunt

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

Start Hunting!

Translated by