 | CFLTLoad Method |
Load and return handle to a convolution filter.
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static CFLT Load(
CGXNETCore gxNetShared,
string file
)
public static CFLT Load(
CGXNETCore gxNetShared,
string file
)
Public Shared Function Load (
gxNetShared As CGXNETCore,
file As String
) As CFLT
Public Shared Function Load (
gxNetShared As CGXNETCore,
file As String
) As CFLT
public:
static CFLT^ Load(
CGXNETCore^ gxNetShared,
String^ file
)
public:
static CFLT^ Load(
CGXNETCore^ gxNetShared,
String^ file
)
static member Load :
gxNetShared : CGXNETCore *
file : string -> CFLT
static member Load :
gxNetShared : CGXNETCore *
file : string -> CFLT
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - file
- Type: SystemString
Name of the filter File
Return Value
Type:
CFLTFLT Object
Remarks
Terminates process if filter not found.
A filter file is an ASCII file that contains filter
coefficients, which are simply mumbers. There can be
one coefficient to a line. Blank lines and comment lines
are skipped. Comment lines beginn with a forward slash
character in column 1. Following is an example Fraser
Filter file:
/----------------------
/ Fraser Filter
/----------------------
-1
-1
1
1
See Also