How to export image data to Excel?

3 visualizaciones (últimos 30 días)
Aidan Hill
Aidan Hill el 20 de Mzo. de 2018
Respondida: KSSV el 21 de Mzo. de 2018
Looking for a program to convert a photo to a grayscale image and then export all the grayscale values to an Excel sheet. Thanks in advance!

Respuestas (1)

KSSV
KSSV el 21 de Mzo. de 2018
I = imread('myiamge') ; % REad the RGB image
I = rgb2gray(I) ; % convert RGB image to gray scale
xlswrite('myfile.xls',I)

Categorías

Más información sobre Convert Image Type 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