AreaOfInterest

Declared in: CustomProcess.h

Area of interest in ground coordinates.

[C++]

typedef struct

{

   double XMin;

   double XMax;

   double YMin;

   double YMax;

   unsigned long NRows;

   unsigned long NCols;

}AreaOfInterest;

Members

XMin

Minimum X value of the area of interest.

XMax

Maximum X value of the area of interest.

YMin

Minimum Y value of the area of interest.

YMax

Maximum Y value of the area of interest.

NRows

Number of rows of the area of interest.

NCols

Number of rows of the area of interest.

Example

For a detailed example using this structure, please see Sample custom process.