|
Re: AxisCamera Question
In C++ and Java, images are constantly acquired by a background task and written into a buffer. Calls to GetImage() read from that buffer into an IMAQ image (this includes decoding the JPEG).
Not calling GetImage() when you are not doing anything with the output will reduce your processing burden by eliminating the JPEG decoding step.
|