フィルターのクリア

I have following code, i want to perform following task on many images reading from directory. kindly help me through code.

2 ビュー (過去 30 日間)
I=imread('E:\a.jpg');
figure(1),imshow(I);
FaceDetect = vision.CascadeObjectDetector;
BB = step(FaceDetect,I);
figure(2),imshow(I);
for i = 1:size(BB,1)
rectangle('Position',BB(i,:),'LineWidth',3,'LineStyle','- ','EdgeColor','r');
end
for i = 1:size(BB,1)
J= imcrop(I,BB(i,:));
% figure(3),subplot(5,5,i);imshow(J);
fname = sprintf('b_cropped_%d.jpg', i);
fpath = fullfile('E:\face', fname);
imwrite(J, fpath)
% imwrite(J,'E:\g_cropped.jpg')
end
  2 件のコメント
Jan
Jan 2017 年 11 月 30 日
@saeeda saher: You have posted 4 very similar questions now:
In the last one you have removed your comments, such that the thread became useless for other readers now. This is not liked in the forum, because the answers a given with the intention to be useful for the community and all readers. Posting multiple questions for the same problem is confusing for the readers and it wastes the time of the persons, who want to help you.
Please post one thread per problem and explain the remaining problems as comments until the question is solved. Add comments, if the suggested code works or what is still missing. Avoid to remove information, which is required to understand the thread. Thanks.

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

回答 (1 件)

Jan
Jan 2017 年 11 月 29 日
編集済み: Jan 2017 年 11 月 29 日
Simply replace
I = imread('E:\a.jpg');
by
Folder = 'E:\';
FileList = dir(fullfile(Folder, '*.jpg'));
for iFile = 1:numel(FileList)
File = fullfile(Folder, FileList(iFile).name);
I = imread(File);
...
% Consider the name or index of the original file:
fname = sprintf('b_cropped_%d_%d.jpg', iFile, i);
...
end
  1 件のコメント
saeeda saher
saeeda saher 2017 年 12 月 2 日
kindly edit my provided code for applying the loop on face detection portion and cropping.. thanks

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

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by