DicomObjects.NET.8.48 Documentation
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 System.Integer
    'Usage
     
    
    Dim instance As DicomImage
    Dim value As System.Integer
     
    instance.FilterLength = value
     
    value = instance.FilterLength
    public System.int FilterLength {get; set;}
    public read-write property FilterLength: System.Integer; 
    public function get,set FilterLength : System.int
    public: __property System.int get_FilterLength();
    public: __property void set_FilterLength( 
       System.int value
    );
    public:
    property System.int FilterLength {
       System.int get();
       void set (    System.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.8 or higher

    See Also