06-15-2011 05:16 PM
In IMAQdx examples, there's a Grab and Basic Attibute example. There are some programs showing how to save the acquired images to AVI files. Is there a way to save the image into a series of numbered TIFF files into one folder, either at the fasted fps or the specified fps, like the setting available on AVI vi? Thank you very much!
Solved! Go to Solution.
06-17-2011 01:11 PM
Hi soljiang,
The image attached below uses the IMAQ Write File 2.vi to save each frame as a TIFF file. This modification is made in the second frame of the stacked sequence structure. A generic file name and location is combined with the 'buffer number' to create a unique filename for each frame. A Decimal Number to String function converts the 'buffer number' to a string, which is then combined with the general file location using Concatenate String function. This string is converted to a filename using a Build Path function and the path is fed to the IMAQ Write File 2 VI along with that frame's image.
Please let me know if anything is confusing about this modification of the example VI.
06-17-2011 04:20 PM
Thank you very much!!!