 | CIMUGridAGC Method |
Automatic Gain Compensation of a grid.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void GridAGC(
CGXNETCore gxNetShared,
CIMG i_img,
CIMG o_img,
int width,
double max_gain,
int remove_background
)
public static void GridAGC(
CGXNETCore gxNetShared,
CIMG i_img,
CIMG o_img,
int width,
double max_gain,
int remove_background
)
Public Shared Sub GridAGC (
gxNetShared As CGXNETCore,
i_img As CIMG,
o_img As CIMG,
width As Integer,
max_gain As Double,
remove_background As Integer
)
Public Shared Sub GridAGC (
gxNetShared As CGXNETCore,
i_img As CIMG,
o_img As CIMG,
width As Integer,
max_gain As Double,
remove_background As Integer
)
public:
static void GridAGC(
CGXNETCore^ gxNetShared,
CIMG^ i_img,
CIMG^ o_img,
int width,
double max_gain,
int remove_background
)
public:
static void GridAGC(
CGXNETCore^ gxNetShared,
CIMG^ i_img,
CIMG^ o_img,
int width,
double max_gain,
int remove_background
)
static member GridAGC :
gxNetShared : CGXNETCore *
i_img : CIMG *
o_img : CIMG *
width : int *
max_gain : float *
remove_background : int -> unit
static member GridAGC :
gxNetShared : CGXNETCore *
i_img : CIMG *
o_img : CIMG *
width : int *
max_gain : float *
remove_background : int -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - i_img
- Type: GeoEngine.Core.GXNetXCIMG
Image of input grid - o_img
- Type: GeoEngine.Core.GXNetXCIMG
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