DicomObjects.NET Core Documentation
DicomObjects.Enums Namespace / MaskMode Enumeration



In This Topic
    MaskMode Enumeration
    In This Topic
    Enumerated values for mask operations
    Syntax
    'Declaration
     
    
    Public Enum MaskMode 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As MaskMode
    public enum MaskMode : System.Enum 
    public enum class MaskMode : public System.Enum 
    Members
    MemberDescription
    AverageSubtraction The frames specified by the MaskFrames property are averaged together, shifted by the amount specified in the MaskShift property, then subtracted from the contrast frames in the range specified in the ApplicableFrames property.
    Maximum In this mode, value of the frames specified by the MaskFrames property are compaired against the contrast frames specified in the ApplicableFrames property, the maximum value is then used for Rendering.
    Minimum In this mode, value of the frames specified by the MaskFrames property are compaired against the contrast frames specified in the ApplicableFrames property, the minimum value is then used for Rendering.
    NoneNo mask subtraction operation is specified
    ReverseTimeDifference This is the reversed Time Interval Differencing mode, in which the number of the mask frame for each contrast frame is calculated by subtracting TID Offset from the first frame within the Applicable Frame Range, TID Offset+2 from the second frame within the Applicable Frame Range, TID Offset+4 from the third frame and so on.
    TimeDifference The mask for each frame within the Applicable Frames range, specified by the ApplicableFrames property, is selected by subtracting the value (specified by TIDOffset property) from the respective frame number.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             DicomObjects.Enums.MaskMode

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also