DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / GetRawFrame Method
Frame number to extract
Cache result for the extracted frame






In This Topic
    GetRawFrame Method (DicomImage)
    In This Topic
    Extract individual frame from the pixel data
    Syntax
    'Declaration
     
    
    Public Function GetRawFrame( _
       ByVal Frame As System.Integer, _
       ByVal cache As System.Boolean _
    ) As System.Byte()
    'Usage
     
    
    Dim instance As DicomImage
    Dim Frame As System.Integer
    Dim cache As System.Boolean
    Dim value() As System.Byte
     
    value = instance.GetRawFrame(Frame, cache)
    public System.byte[] GetRawFrame( 
       System.int Frame,
       System.bool cache
    )
    public function GetRawFrame( 
        Frame: System.Integer;
        cache: System.Boolean
    ): System.array of Byte; 
    public function GetRawFrame( 
       Frame : System.int,
       cache : System.boolean
    ) : System.byte[];
    public: System.byte[]* GetRawFrame( 
       System.int Frame,
       System.bool cache
    ) 
    public:
    System.array<byte>^ GetRawFrame( 
       System.int Frame,
       System.bool cache
    ) 

    Parameters

    Frame
    Frame number to extract
    cache
    Cache result for the extracted frame

    Return Value

    Raw pixel data of the request frame
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also