Unregistered
December 17, 2002, 18:29:25
In your sample, the folowing code will grab a frame:
grabber->startLive( false );
grabber->snapImages( NUM_BUFFERS ); // grab images
grabber->stopLive(); // stop the grabber
Questions:
1. If I let startLive( false ) run all the time through my whole application, then every time when I want to capture frames, I just call
grabber->snapImages( NUM_BUFFERS ); // grab images
at the end of the application, I will call grabber->stopLive(). Is it possible, or will it speed up the capturing since I do not have to call the startLive() and stopLive() pair every time I want to capture a frame ?
2. What does startLive( false ) do to the application when it is running? Will it consume a lot of application resources if I let it running all the time?
Thank You!
This message was originally posted by Yi Ren in the old IC Imaging Control Support Forum.
grabber->startLive( false );
grabber->snapImages( NUM_BUFFERS ); // grab images
grabber->stopLive(); // stop the grabber
Questions:
1. If I let startLive( false ) run all the time through my whole application, then every time when I want to capture frames, I just call
grabber->snapImages( NUM_BUFFERS ); // grab images
at the end of the application, I will call grabber->stopLive(). Is it possible, or will it speed up the capturing since I do not have to call the startLive() and stopLive() pair every time I want to capture a frame ?
2. What does startLive( false ) do to the application when it is running? Will it consume a lot of application resources if I let it running all the time?
Thank You!
This message was originally posted by Yi Ren in the old IC Imaging Control Support Forum.