 | CIMUGridFilt Method |
Applies a filter to a grid any number
of passes.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void GridFilt(
CGXNETCore gxNetShared,
CIMG img,
CIMG imgo,
int passes,
double mult,
int dum,
int hz,
int usefile,
string file,
CVV vv
)
public static void GridFilt(
CGXNETCore gxNetShared,
CIMG img,
CIMG imgo,
int passes,
double mult,
int dum,
int hz,
int usefile,
string file,
CVV vv
)
Public Shared Sub GridFilt (
gxNetShared As CGXNETCore,
img As CIMG,
imgo As CIMG,
passes As Integer,
mult As Double,
dum As Integer,
hz As Integer,
usefile As Integer,
file As String,
vv As CVV
)
Public Shared Sub GridFilt (
gxNetShared As CGXNETCore,
img As CIMG,
imgo As CIMG,
passes As Integer,
mult As Double,
dum As Integer,
hz As Integer,
usefile As Integer,
file As String,
vv As CVV
)
public:
static void GridFilt(
CGXNETCore^ gxNetShared,
CIMG^ img,
CIMG^ imgo,
int passes,
double mult,
int dum,
int hz,
int usefile,
String^ file,
CVV^ vv
)
public:
static void GridFilt(
CGXNETCore^ gxNetShared,
CIMG^ img,
CIMG^ imgo,
int passes,
double mult,
int dum,
int hz,
int usefile,
String^ file,
CVV^ vv
)
static member GridFilt :
gxNetShared : CGXNETCore *
img : CIMG *
imgo : CIMG *
passes : int *
mult : float *
dum : int *
hz : int *
usefile : int *
file : string *
vv : CVV -> unit
static member GridFilt :
gxNetShared : CGXNETCore *
img : CIMG *
imgo : CIMG *
passes : int *
mult : float *
dum : int *
hz : int *
usefile : int *
file : string *
vv : CVV -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - img
- Type: GeoEngine.Core.GXNetXCIMG
Image of first grid - imgo
- Type: GeoEngine.Core.GXNetXCIMG
Image of second grid - passes
- Type: SystemInt32
Number of passes to apply filter (>0) - mult
- Type: SystemDouble
Multiplier to apply to grid values - dum
- Type: SystemInt32
<define>IMU_FILT_DUMMY</define> - hz
- Type: SystemInt32
<define>IMU_FILT_HZDRV</define> - usefile
- Type: SystemInt32
<define>IMU_FILT_FILE</define> - file
- Type: SystemString
Name of file containing filter values - vv
- Type: GeoEngine.Core.GXNetXCVV
VV containing filter values (if not using a file for the values) MUST BE OF TYPE 'real'
Remarks
The IMG parameters MUST be of type <define>GS_FLOAT</define>!
If not, the method will terminate.
See Also