DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / FilterLength Property



In This Topic
    FilterLength Property
    In This Topic
    Contains the length of the smoothing filter
    Syntax
    'Declaration
     
    Public Property FilterLength As Integer
    'Usage
     
    Dim instance As DicomImage
    Dim value As Integer
     
    instance.FilterLength = value
     
    value = instance.FilterLength
    public int FilterLength {get; set;}
    public:
    property int FilterLength {
       int get();
       void set (    int value);
    }
    Remarks
    This property is used when DicomImage's FilterMode is set to MovingAverage and it controls the number of pixel values used in the smoothing calculation. If length is zero then a suitable value is determined internally based on the zoom, but if FileterLenght is non-zero then 2 * FilterLength number of pixel values will be used in MovingAverage smoothing calculation.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also