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

3 次查看(过去 30 天)
reading folder containing images and storing their properties in a matrix

采纳的回答

KSSV
KSSV 2016-12-7
编辑:KSSV 2016-12-7
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 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by