Hi,
I've had a quick glance at your VI. I think the principal thing is that
you should make the acquiring and processing in parallel, i.e. acquire
the new image while rotating, displaying and saving the previous one.
Still, I don't think you can make the whole processing in 24 FPS,
mainly because the rotation you are using is very slow. Unfortunately,
the vision module does not have a fast 90 degree rotation function. The
current routine carries out an arbitrary rotation, which is much slower
than an optimized 90° rotation (the only workaround I can think of is
write your own optimized routine in C and call it from a DLL).
Moreover, you left Bilinear Interpolation set to TRUE, which even more
slows the rotation process.
Vladimir
kirkland4 wrote:
> Our pulnix camera has 15 and 30 fps ratings. According to MAX i'm only getting 24 fps, not the best, but I can live with it. Unfortunately, with my labview VI I am only getting 2 fps with snap, and 3-4 fps with grab!
>
> Am I being limited by the time required to write to disc?I feel the problem may be with the way I've coded my VI to save the files. I have the files saved in line with the number of iterations so they save 1.png, 2.png, 3.png. I do this because it makes it easy to automatically open the files and process them. If there is a better way to do this then let me know.
>
>
> imagegrab.vi:
> http://forums.ni.com/attachments/ni/200/10566/1/imagegrab.vi