07-04-2011 06:47 AM
Hello,
i am cquiring images via external USB camera. I would like to know if anybody has a good advice on how to save the images and index them, starting from 0 or 1 whenever i push the "save" control (see the attached code)? I could wire the while loop iteration, but this does not neccessarilly start from 0 or 1.
Bottom line: i would like my saved N images to be named "image0, image 1, image 2, ... image N-1"
Best regards and thank you.
07-04-2011 07:01 AM
Use a zero initialized shift register to host your index. Wire it through the Case structure, leaving it unchanged into the false case, using and then incrementing it into the true case.
07-04-2011 07:12 AM
Do i feel stupid right now.
Thank you very much it is perfect.
Regards,
K
07-04-2011 07:22 AM
We all need a little push from time to time.