TheImagingSource / IC-Imaging-Control-Samples

Windows Sample in C#, C++, Python, LabVIEW and Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python (tisgrabber) - how to stream without live preview?

gmoneyphx opened this issue · comments

commented

I am using the 32-trigger-callback example successfully with an external trigger. How to stream camera data without the live preview (which in my use case just wastes system resources)?

Hello

pass 0 as second parameter to IC_StartLive(grabber,0) instead of 1.
IC_StartLive(grabber,0) does not show a live video, while IC_StartLive(grabber,1) shows one.

Stefan

commented

Thank you for your assistance and your efforts on this SDK. It is very, very helpful.