 | CIMUGridFill Method |
Interpolates to fill dummies, generates an output grid.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void GridFill(
CGXNETCore gxNetShared,
CIMG im_gi,
CIMG im_go,
int rollopt,
int rolldist,
int mxf,
int mxp,
double rollbase,
double alimit,
double elimit,
int width,
int npass
)
public static void GridFill(
CGXNETCore gxNetShared,
CIMG im_gi,
CIMG im_go,
int rollopt,
int rolldist,
int mxf,
int mxp,
double rollbase,
double alimit,
double elimit,
int width,
int npass
)
Public Shared Sub GridFill (
gxNetShared As CGXNETCore,
im_gi As CIMG,
im_go As CIMG,
rollopt As Integer,
rolldist As Integer,
mxf As Integer,
mxp As Integer,
rollbase As Double,
alimit As Double,
elimit As Double,
width As Integer,
npass As Integer
)
Public Shared Sub GridFill (
gxNetShared As CGXNETCore,
im_gi As CIMG,
im_go As CIMG,
rollopt As Integer,
rolldist As Integer,
mxf As Integer,
mxp As Integer,
rollbase As Double,
alimit As Double,
elimit As Double,
width As Integer,
npass As Integer
)
public:
static void GridFill(
CGXNETCore^ gxNetShared,
CIMG^ im_gi,
CIMG^ im_go,
int rollopt,
int rolldist,
int mxf,
int mxp,
double rollbase,
double alimit,
double elimit,
int width,
int npass
)
public:
static void GridFill(
CGXNETCore^ gxNetShared,
CIMG^ im_gi,
CIMG^ im_go,
int rollopt,
int rolldist,
int mxf,
int mxp,
double rollbase,
double alimit,
double elimit,
int width,
int npass
)
static member GridFill :
gxNetShared : CGXNETCore *
im_gi : CIMG *
im_go : CIMG *
rollopt : int *
rolldist : int *
mxf : int *
mxp : int *
rollbase : float *
alimit : float *
elimit : float *
width : int *
npass : int -> unit
static member GridFill :
gxNetShared : CGXNETCore *
im_gi : CIMG *
im_go : CIMG *
rollopt : int *
rolldist : int *
mxf : int *
mxp : int *
rollbase : float *
alimit : float *
elimit : float *
width : int *
npass : int -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - im_gi
- Type: GeoEngine.Core.GXNetXCIMG
Image of input grid - im_go
- Type: GeoEngine.Core.GXNetXCIMG
Image of output grid - rollopt
- Type: SystemInt32
<define>IMU_FILL_ROLLOPT</define> - rolldist
- Type: SystemInt32
Distance at which to roll off to 0 - mxf
- Type: SystemInt32
Maximum prediction filter length - mxp
- Type: SystemInt32
Maximum prediction filter area - rollbase
- Type: SystemDouble
Base value to roll off to - alimit
- Type: SystemDouble
Maximum amplitude allowed in grid - elimit
- Type: SystemDouble
Maximum edge amplitude allowed in grid - width
- Type: SystemInt32
Width from edge to start limiting from - npass
- Type: SystemInt32
Number of convolution passes to apply
Remarks
The IMG parameters MUST be of type <define>GS_FLOAT</define>!
If not, the method will terminate.
See Also