Hi,
Is there any “simple” way to save an img frame (tipically from video or webcam source)?
I have to save A LOT of different frame from different video, to create a collection of img to use later (probably).
tnx
Hi,
Is there any “simple” way to save an img frame (tipically from video or webcam source)?
I have to save A LOT of different frame from different video, to create a collection of img to use later (probably).
tnx
Seems that i’ve found what I was looking for just in the of package
ofImage im;
im.save(......);
Tnx anyway.