VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Filters Namespace / CannyEdgeDetectorCommand Class / HighThreshold Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    HighThreshold Property (CannyEdgeDetectorCommand)
    In This Topic
    Gets or sets the high threshold.
    Syntax
    'Declaration
    
    <DescriptionAttribute("The high threshold.
    Valid values are from 0 to 255.")>
    <DefaultValueAttribute(80)>
    Public Property HighThreshold As Byte
    
    
    [Description("The high threshold.
    Valid values are from 0 to 255.")]
    [DefaultValue(80)]
    public byte HighThreshold { get; set; }
    
    
    [Description("The high threshold.
    Valid values are from 0 to 255.")]
    [DefaultValue(80)]
    public: __property byte get_HighThreshold();
    public: __property void set_HighThreshold(
    byte value
    );
    [Description("The high threshold.
    Valid values are from 0 to 255.")]
    [DefaultValue(80)]
    public:
    property byte HighThreshold { byte get(); void set(byte value); }

    Property Value

    Valid values are from 0 to 255. Default value is 80.
    Exceptions
    ExceptionDescription
    Thrown if high threshold is less than low threshold.
    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