Is it possible to apply a single function to all images of an imageset?
4 ビュー (過去 30 日間)
古いコメントを表示
Apologies if this is basic stuff - i'm new to matlab.
I have an imageset containing over 100 images, that are all time-dependent images of the same object - ie. the same object was filmed over a time period and i have split up the frames as individual images.
Would it be possible therefore to apply a function (say im2bw) to all of them?
I have a for loop:
z = imageset(uigetdir(*))
uC = *.Count
for i = 1:uC
pic = read(z,i);
bw = im2bw(pic);
end
My understanding is that that the algorithm itirates through the im2bw function for the duration of the length of the imageset. The code does work in that it converts images to bw; however, i am having problems recompiling the imageset at the end of the loop, and thus I get only one single image called bw, as opposed to the desired imageset.
Can you help?
Thanks!!!
0 件のコメント
採用された回答
Image Analyst
2020 年 5 月 2 日
Three code samples are shown in the FAQ: FAQ#How_can_I_process_a_sequence_of_files
0 件のコメント
その他の回答 (2 件)
KSSV
2020 年 5 月 2 日
z = imageset(uigetdir(*))
uC = *.Count
bw = cell(Uc,1) ;
for i = 1:uC
pic = read(z,i);
bw{i} = im2bw(pic);
end
YOu can access bw by bw{1}, bw{2}, .....bw{n}.
If you know size in prior, you can save them into 3D matrix also.
0 件のコメント
Pranaya Kansakar
2020 年 5 月 2 日
編集済み: Pranaya Kansakar
2020 年 5 月 2 日
1 件のコメント
Image Analyst
2020 年 5 月 2 日
Use imwrite() to write out the new bw image to the folder where you want them to live.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!