複数画像の切り出しと​ワークスペースにエク​スポートする方法につ​いて

10 views (last 30 days)
HY
HY on 8 Sep 2021
Commented: HY on 9 Sep 2021
1枚の画像から物体検出器を使用して複数のバウンディングボックスの座標を得た後、その情報をもとに画像の切り抜きを行いたいと思っています。
for i=1:numel(idx)
imgCrop = imcrop(I,bboxes2(i,:));
figure
imshow(imgCrop)
end
このコードで実行すると複数の切り取られた画像が表示されます。
そこで、その切り取られた複数の画像をワークスペースに入れたいのですが、imgCropで代入しているため、最後の画像のみが残ります。
全ての切り取られた画像をワークスペースに残すためには、どのようにすればよいでしょうか。
よろしくお願いいたします。

Accepted Answer

Atsushi Ueno
Atsushi Ueno on 8 Sep 2021
Edited: Atsushi Ueno on 8 Sep 2021
セル配列で包めば全ての切り取られた画像がワークスペースに残ります。下記コードはその例です。
I = imread('peppers.png');
bboxes2 = [100 100 100 100; 200 200 50 50];
for i = 1:2
imgCrop{i} = imcrop(I,bboxes2(i,:));
%figure; imshow(imgCrop{i});
end
imgCrop
imgCrop = 1×2 cell array
{101×101×3 uint8} {51×51×3 uint8}
  1 Comment
HY
HY on 9 Sep 2021
ご回答ありがとうございます。
うまく実行できました。助かりました。

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!