06-14-2007 12:38 PM
06-15-2007 03:40 PM
06-15-2007 09:26 PM
06-18-2007 09:28 AM
01-11-2010 01:18 PM
Hi Jasper,
I am trying to capture images from a USB camera using LabView and would like to control the number of frames as well as how often I grab the frames. I am using the Grab and Acquire VI and can talk to the camera but I cannot control how often I grab the frames as well as the time intervals between them. I am looking at the timed sequences coupled with IMAQ Write File but haven't got them working. Any suggestions?
Thanks
MikeJo
01-12-2010 10:32 AM
Hey MikeJo,
First, it might be a little more beneficial to create a new thread for your new question, as the last post on this particular thread was over a year and a half ago. You could always reverence this thread.
Second, you should be able to control your frame rate if you use some timing in the loop that contains your Grab.vi. If you have a wait function of, say, 500 ms, your frame rate should be 2 fps. However, if you are also trying to save your images to disk in the same loop, you will notices that the maximum frame rate might not be what you expect. This is because of the time it takes to write an image to disk. If this is the case, you might want to consider implementing a parallel loop architecture and handle all the saving in your consumer loop. This will allow your producer loop to continuously acquire at a specified frame rate, and your consumer loop can take its time saving those images to disk.