None |
// 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.