IsReadout
Returns whether or not the controller is currently reading out an image.
Syntax
bool IsReadout();
Parameters
None
Returns
bool - Returns 'true' if the controller is reading out an image. Returns 'false' otherwise.
Required Headers
CController.h
Namespace
arc
Throws
None
Remarks
None
Example
        // This code demonstrates how to read the current
        // pixel count during image readout.

        #include <iostream.h>
        #include "CController.h"
        using namespace std;
        using namespace arc;

        CController cController;

        // .... open driver, initialize, etc ....

        try {
            while ( cController.IsReadout() )
            {
                cout << "Pixel Count: "
                     << cController.GetPixelCount()
                     << endl;
            }
         }
        catch ( std::exception &e )
        {
            cerr << "Exception Occurred: " << e.what() << endl;
        }

© Astronomical Research Cameras, Inc.