VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Filters Namespace / ConvolutionCommand Class / KernelMatrix Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    KernelMatrix Property (ConvolutionCommand)
    In This Topic
    Gets or sets a convolution matrix.
    Syntax
    'Declaration
    
    <ReadOnlyAttribute(True)>
    <DescriptionAttribute("A convolution matrix.")>
    Public Property KernelMatrix As Long[,]
    
    
    [ReadOnly(True)]
    [Description("A convolution matrix.")]
    public long[,] KernelMatrix { get; set; }
    
    
    [ReadOnly(True)]
    [Description("A convolution matrix.")]
    public: __property long[,] get_KernelMatrix();
    public: __property void set_KernelMatrix(
    long[,]* value
    );
    [ReadOnly(True)]
    [Description("A convolution matrix.")]
    public:
    property long[,] KernelMatrix { long[,] get(); void set(array<long>^ value); }
    Exceptions
    ExceptionDescription
    Thrown if kernel matrix is null.
    Thrown if kernel matrix size is odd value or matrix is not square.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also