Initializes a new instance with the specified kernel, divisor, and offset.
[Visual Basic .NET] |
---|
Public Function InitializeWithKernelDivisorAndOffset( _ ByVal Kernel As System.Array, _ ByVal Divisor As Double, _ ByVal Offset As Double _ ) As IAgStkGraphicsConvolutionFilter |
[C#] |
---|
public IAgStkGraphicsConvolutionFilter InitializeWithKernelDivisorAndOffset( System.Array Kernel, double Divisor, double Offset ); |
[Managed C++] |
---|
public: IAgStkGraphicsConvolutionFilter^ InitializeWithKernelDivisorAndOffset( System::Array ^ Kernel, double Divisor, double Offset ); |
[Unmanaged C++] |
---|
public: HRESULT InitializeWithKernelDivisorAndOffset( SAFEARRAY * * Kernel, double Divisor, double Offset, IAgStkGraphicsConvolutionFilter ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsConvolutionFilter initializeWithKernelDivisorAndOffset( AgSafeArray Kernel, double Divisor, double Offset ); |
[Python - STK API] |
---|
def InitializeWithKernelDivisorAndOffset(self, Kernel:list, Divisor:float, Offset:float) -> "IAgStkGraphicsConvolutionFilter": |
- Kernel
- An array containing the 9 elements of the
of the convolution matrix. The elements should be provided as the entire first row, followed by the entire second row, followed by the entire third row, each from left to right. - Divisor
- The
of the convolution. - Offset
- The
of the convolution.
Shows the format of the Kernel parameter when creating a convolution filter.
[C#] | ||
---|---|---|
|
Shows the format of the Kernel parameter when creating a convolution filter.
[Visual Basic .NET] | ||
---|---|---|
|