 | CIMUGridAGC Method |
Automatic Gain Compensation of a grid.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GridAGC(
CIMG i_img,
CIMG o_img,
int width,
double max_gain,
int remove_background
)
public static void GridAGC(
CIMG i_img,
CIMG o_img,
int width,
double max_gain,
int remove_background
)
Public Shared Sub GridAGC (
i_img As CIMG,
o_img As CIMG,
width As Integer,
max_gain As Double,
remove_background As Integer
)
Public Shared Sub GridAGC (
i_img As CIMG,
o_img As CIMG,
width As Integer,
max_gain As Double,
remove_background As Integer
)
public:
static void GridAGC(
CIMG^ i_img,
CIMG^ o_img,
int width,
double max_gain,
int remove_background
)
public:
static void GridAGC(
CIMG^ i_img,
CIMG^ o_img,
int width,
double max_gain,
int remove_background
)
static member GridAGC :
i_img : CIMG *
o_img : CIMG *
width : int *
max_gain : float *
remove_background : int -> unit
static member GridAGC :
i_img : CIMG *
o_img : CIMG *
width : int *
max_gain : float *
remove_background : int -> unit
Parameters
- i_img
- Type: GeoEngine.Core.GXNetCIMG
Image of input grid - o_img
- Type: GeoEngine.Core.GXNetCIMG
Image of output grid - width
- Type: SystemInt32
Width of filter to separate signal from background. - max_gain
- Type: SystemDouble
Maximum gain applied to the signal. - remove_background
- Type: SystemInt32
Remove background before applying gain?
Remarks
The IMG parameters MUST be of type <define>GS_FLOAT</define>!
If not, the method will terminate.
See Also