how to export output of MATLAB code to excel sheet
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have 125 image files each of which contains 6 sub-images. The idea is to extract properties from the each sub-images of the image files. 5 properties are to be extracted from each sub-image 4 among which are extracted using GLCM. I need to store all the obtained feature matrix in excel format. So I need to get an excel sheet of 125*6*6 entries. Suggest me a possible modification in my code.
I = imread('2.jpg');
Im = rgb2gray(I);
K = imshow(Im);
I3 = imcrop();
imwrite(I3, 'out.png');
Ig = imread('out.png');
glcm = graycomatrix(Ig)
stats = graycoprops(glcm)
e = entropy(Ig)
close
0 Kommentare
Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!