Search Results for

    Show / Hide Table of Contents

    Class UnsharpenMaskAction

    Increases sharpness of an image by using the unsharp mask technique.

    Inheritance
    object
    ImageActionBase
    UnsharpenMaskAction
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class UnsharpenMaskAction : ImageActionBase

    Properties

    Amount

    Unsharp mask amount (the difference between blurred and original image).

    Declaration
    [JsonProperty("amount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public float Amount { get; set; }
    Property Value
    float

    Radius

    Blur radius used to produce unfocused version of the image.

    Declaration
    [JsonProperty("radius", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public float Radius { get; set; }
    Property Value
    float

    Threshold

    The threshold value for the unsharp mask in range [0, 1]

    Declaration
    [JsonProperty("threshold", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public float Threshold { get; set; }
    Property Value
    float

    Methods

    FromJson(string)

    Declaration
    public static UnsharpenMaskAction FromJson(string data)
    Parameters
    string data

    Returns
    UnsharpenMaskAction

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX