Cropping several images inside a for delivers empty cells

1 回表示 (過去 30 日間)
Adrián G.
Adrián G. 2023 年 2 月 27 日
コメント済み: Adrián G. 2023 年 2 月 28 日
Hi. Im trying to process several images at once.
For cropping this is the code I'm writing:
I is raw images and I_ are cropped raw images.
RECT=[0 400 1024 200];
for K=1:10
I_{k}=imcrop(I{k},RECT);
end
Images are 1024x1024 uint8 and are completely accesible and printable in variable I.
I_, after the code, is nothing more than a 1x10 empty cell.
When executing, for example,
% (in command window)
I_{1}=imcrop(I{1},RECT)
in the command window it works and writes the image in the variable spot I_{1} perfectly fine. I can do it one by one but the loop wont.

採用された回答

Stephen23
Stephen23 2023 年 2 月 27 日
編集済み: Stephen23 2023 年 2 月 27 日
for K=1:10 % <- uppercase
I_{k}=imcrop(I{k},RECT);
end % ^ lowercase ^
MATLAB is case-sensitive, so you need to make the index the same as the loop iterator.
  1 件のコメント
Adrián G.
Adrián G. 2023 年 2 月 28 日
Thank you Stephen. It went over my head.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by