Description
Initializes a new instance with the specified
Kernel and
Divisor.
Syntax
Parameters
Example
Shows the format of
the Kernel parameter when creating a convolution filter.
| [C#] |
Copy Code
|
Array kernel = new object[] {
1, 1, 1,
1, 1, 1,
1, 1, 1
};
IAgStkGraphicsConvolutionFilter convolutionFilter = sceneManager.Initializers.ConvolutionFilter.InitializeWithKernel(ref kernel);
|
|
Shows the format of
the Kernel parameter when creating a convolution filter.
| [Visual Basic .NET] |
Copy Code
|
Dim kernel
As Array
= New Object() {1, 1, 1, 1, 1, 1, _
1, 1, 1}
Dim convolutionFilter As IAgStkGraphicsConvolutionFilter =
sceneManager.Initializers.ConvolutionFilter.InitializeWithKernel(kernel)
|
|
See Also