Effacer les filtres
Effacer les filtres

Converting an image into three column format

2 vues (au cours des 30 derniers jours)
Bharathwaj
Bharathwaj le 1 Jan 2013
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
  1 commentaire
Image Analyst
Image Analyst le 1 Jan 2013
Why do you want to do this? How will this help you?

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 1 Jan 2013
[r, c] = find( true(size(YourArray));
col3 = [r(:), c(:), YourArray(:)];

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by