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



In This Topic
    GetRawFrame Method
    In This Topic
    Extract individual frame from the pixel data
    Syntax
    'Declaration
     
    Public Function GetRawFrame( _
       ByVal Frame As Integer, _
       ByVal cache As Boolean _
    ) As Byte()
    'Usage
     
    Dim instance As DicomImage
    Dim Frame As Integer
    Dim cache As Boolean
    Dim value() As Byte
     
    value = instance.GetRawFrame(Frame, cache)
    public byte[] GetRawFrame( 
       int Frame,
       bool cache
    )
    public:
    array<byte>^ GetRawFrame( 
       int Frame,
       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.0 or higher

    See Also