Page 1 of 1

Is there any way not using videodecoder ?

Posted: Thu Jan 16, 2020 12:41 am
by Mitsuru Takeda
Hi!
I'm trying to get camera image with using camera SDK samples.

camera->AttachModule(new cModuleVideoDecompressorLibav()); //== create & attach video decoder ==--
camera->SetLateDecompression(true);

I understand these command is needed to get camera image because some sample, such as MJPEGViewer doesn't work.
But, with these command, my code can't process with multithreading.
So, my question is how to run code with multithreads.
I mean multithread to have two or more Frame* and to do image processing.
Thank you in advance!