I am trying to find a method to access a full frame of image data in TwinCAT. Looking at:
It seems that I am able to access only one row at a time, and that is a waste of time, in this case. My purpose is to access the image data from a continuously running camera and store that data on disk one full frame at a time.
Any suggestions are welcome - thank you!
BR, Rainer
Problem solved!
Use:
to get the required buffer size (in bytes) to store the image data.
And then
to export the image data into that buffer (e.g. an array).