Hi
Thanks for the reply.
I am getting quite a good picture of how this is going to work. One question on averageing up to 128 frames. I have thought of two ways to do this, the first one I know will work but is the long way of doing it, the second version uses build-in functions which makes it less cumbersome.
First way:
1. Capture frame
2. Use ImageToArray to convert pixels values to an array
3. Add the values from this array to the values in the cumilitive array.
4. Repeat 128 times
5. Divide all the values in the cumilitive array
6. Use ArrayToImage to convert the array back to an image
Second Way
1. Capture frame
2. Use .Add to add this frame to a cumilitive frame
3. Repeat 128 times
4. Use .Devide to devide all the pixels by 128
I know the first way will work, I am not sure about the second way because the frames will be U8 and the cumilitive frame will have to be U16.
Hope this makes some sense
Best regards
Bestbier
P.S. I am still waiting for my supplier to send me the configuration file for the camera (cameralink), that's why I have not tried this.