DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / PixelValuesByFrame Method
The 1-based frame number to retrieve
Controls whether to apply the scale/offset or Modality LUT if present






In This Topic
    PixelValuesByFrame Method
    In This Topic
    Returns an array of pixel values for a frame, optionally transformed via the modality transformation
    Syntax
    'Declaration
     
    
    Public Function PixelValuesByFrame( _
       ByVal Frame As System.Integer, _
       ByVal ModalityTransform As System.Boolean _
    ) As System.Single()
    'Usage
     
    
    Dim instance As DicomImage
    Dim Frame As System.Integer
    Dim ModalityTransform As System.Boolean
    Dim value() As System.Single
     
    value = instance.PixelValuesByFrame(Frame, ModalityTransform)
    public System.float[] PixelValuesByFrame( 
       System.int Frame,
       System.bool ModalityTransform
    )
    public function PixelValuesByFrame( 
        Frame: System.Integer;
        ModalityTransform: System.Boolean
    ): System.array of Single; 
    public function PixelValuesByFrame( 
       Frame : System.int,
       ModalityTransform : System.boolean
    ) : System.float[];
    public: System.float[]* PixelValuesByFrame( 
       System.int Frame,
       System.bool ModalityTransform
    ) 
    public:
    System.array<float>^ PixelValuesByFrame( 
       System.int Frame,
       System.bool ModalityTransform
    ) 

    Parameters

    Frame
    The 1-based frame number to retrieve
    ModalityTransform
    Controls whether to apply the scale/offset or Modality LUT if present

    Return Value

    Array of float values representing the (possibly transformed) pixel values
    Remarks
    Even if ModalityTransform is false, the values are still masked to the relevent bit length and interpretted as sign/unsigned. This differs from RawPixelValuesByFrame.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also