Is it possible to apply a single function to all images of an imageset?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Pranaya Kansakar
il 2 Mag 2020
Commentato: Image Analyst
il 2 Mag 2020
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 Commenti
Risposta accettata
Image Analyst
il 2 Mag 2020
Three code samples are shown in the FAQ: FAQ#How_can_I_process_a_sequence_of_files
0 Commenti
Più risposte (2)
KSSV
il 2 Mag 2020
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 Commenti
Pranaya Kansakar
il 2 Mag 2020
Modificato: Pranaya Kansakar
il 2 Mag 2020
1 Commento
Image Analyst
il 2 Mag 2020
Use imwrite() to write out the new bw image to the folder where you want them to live.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!