long rows |
The pre-binning number of image rows. |
long cols |
The pre-binning number of images columns. |
long rowFactor |
The number of pixels to bin in the row dimension. |
long colFactor |
The number of pixels to bin in the column dimension. |
long binRows |
[optional] Returns binned image row size. Default: NULL |
long binCols |
[optional] Returns binned image column size. Default: NULL |
// This code demonstrates how to set the
// controller to 2x2 binning.
#include <iostream.h>
#include "CController.h"
using namespace std;
using namespace arc;
CController cController;
// .... open driver, initialize, etc ....
try {
// Set 2x2 binning, image size will be 256x300
cController.SetBinning( 512, 600, 2, 2 );
}
catch ( std::exception &e )
{
cerr << "Exception Occurred: " << e.what() << endl;
}
© Astronomical Research Cameras, Inc.