long rows |
The total image row size ( in pixels ). |
long cols |
The total image column size ( in pixels ). |

// This code demonstrates how to subtract
// the two sides of an image to produce a
// subtracted 512x1200 pixel image from a
// 1024x1200 pixel image.
#include <iostream.h>
#include "CController.h"
using namespace std;
using namespace arc;
CController cController;
// .... open driver, initialize, etc ....
try {
cController.SubtractImageHalves( 1024, 1200 );
}
catch ( std::exception &e )
{
cerr << "Exception Occurred: " << e.what() << endl;
}
© Astronomical Research Cameras, Inc.