フィルターのクリア

how to fed all the images to an array from a folder and from that array fed one by one image to a function?

1 回表示 (過去 30 日間)
function [features]=feature_extractor_2d(im2)
%this function zones the input image and extracts features for each zone.
srcFiles = dir('C:\Users\Omm\Desktop\thesis\multicharacterrec\*.png'); % the folder in which ur images exists
for i = 1 : length(srcFiles)
filename = strcat('C:\Users\Omm\Desktop\thesis\multicharacterrec\',srcFiles(i).name);
im = imread(filename);
%selecting the universe of discourse
im2=discourser(im);
end
this function is replacing all the previous images to a new image and taking last one as a input but i want to get the features of all the image one by one please guide me how to do it in matlab?
  6 件のコメント
Walter Roberson
Walter Roberson 2016 年 7 月 14 日
image = imread(filename);
is still using "image" as the name of a variable.

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2016 年 7 月 14 日
Also please use fullfile() instead of strcat() to build your names.
projectdir = 'C:\Users\Omm\Desktop\thesis\multicharacterrec';
srcFiles = dir(projectdir, '*.png');
numfiles = length(srcFiles);
outputs = cell(numfiles, 1);
for i = 1 : numfiles
filename = fullfile(projectdir, srcFiles(i).name);
thisimage = imread(filename);
%selecting the universe of discourse
outputs{i} = discourser(thisimage);
end
  1 件のコメント
Walter Roberson
Walter Roberson 2016 年 7 月 14 日
編集済み: Walter Roberson 2016 年 7 月 15 日
projectdir = 'C:\Users\Omm\Desktop\thesis\multicharacterrec';
srcFiles = dir(projectdir, '*.png');
numfiles = length(srcFiles);
outputs = cell(numfiles, 1);
saved_images = cell(numfiles, 1);
for i = 1 : numfiles
filename = fullfile(projectdir, srcFiles(i).name);
thisimage = imread(filename);
saved_images{i} = thisimage;
%selecting the universe of discourse
outputs{i} = discourser(thisimage);
end

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by