07-10-2006 06:52 AM
to configure IMAQ and Vision to automatically acquire, preprocess and analyze an image from a 1394 camera. My goal is real time analysis of the images at at least 15 fps, so batch processing (first write all images to buffer, then analyze the whole image sequence) is (at least for the current project design) not an option.
After a fixed time, I wish the acquisition to stop.
How do I deinstall the callback properly to prevent IMAQ triggering the callback function when it's no longer needed? After imaq1394StopAcquisition() the callback function is often still triggered at least once.
I tried the following approach:
Unfortunately, the callback now STILL fires once again (trying to use the memory the main function just freed), though on my opinion after StopAcquisition this should not have happened.
What is the correct strategy to stop events triggering a previously installed callback function or to put it straight: What is the counter for InstallCallback?
Glad for any help ....
07-18-2006 08:24 AM