hi i want to read a folder of images and i have to store their properties in a matrix...i.e, first image properties in first column and second image properties in second colum likewise..help me
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
reading folder containing images and storing their properties in a matrix
2 Kommentare
KSSV
am 7 Dez. 2016
what properties? When you read an image you will get RGB matrix, which would be huge to store.
Akzeptierte Antwort
KSSV
am 7 Dez. 2016
Bearbeitet: KSSV
am 7 Dez. 2016
clc; clear all ;
F = dir('*.jpg'); % your images extension and you are in the present directory of images
nimage = length(F) ; % length of images
E = zeros(nimage,1) ; % initiliaze energy
M = zeros(nimage,1) ; % intiilize mean
% loop for each image
for ii = 1:nimage
I = imread(F(ii).name); % read image
% do what you want, let Ei, Mi be calculated energy and mean
% E(ii) = Ei ;
% M(ii) = Mi ;
end
3 Kommentare
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!