ReadXLImage
CameraAPI.ReadXLImage( exp_runnable, exp_info, exp_time, rows, cols );
Object exp_runnable The exposure code that will control the readout. The exposure code must be a class that implements the java.lang.Runnable interface.
Object exp_info A reference to a owl.main.exposure.ExposeInfo class. This class is used to provide readout info and feedback, such as showing the current pixel count.
int exp_time The exposure time in milliseconds.
int rows The row size of the image.
int cols The column size of the image.
None
Readout an image using extra-large image buffers. Throws java.lang.Exception if an error occurs. All exceptions can be caught using a try/catch block.

1. This code requires the use of
   Dsplib\V1.8\BigImagePCI\TotalPixelCountZPT\pci.lod

2. The above pci.lod file assumes the image buffer is 4096x4096,
   so the primary image buffer MUST be at least that big. The
   PCI code fills and loops on the 4K x 4K buffer. However, it
   is up to this code to make sure the pointer to the image buffer
   stays within the 4K x 4K buffer while copying the smaller
   sub-buffers to the CXLBuffer class.