DicomObjects.NET.V8
DicomObjects Namespace / DicomImage3D Class / DicomImage3D Constructor
The volume from which to create the image
The intial rendering mode



In This Topic
    DicomImage3D Constructor
    In This Topic
    Create a 3D image from a DicomVolume and with a defined rendering mode
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal volume As DicomVolume, _
       ByVal Type As RenderMode3D _
    )
    'Usage
     
    Dim volume As DicomVolume
    Dim Type As RenderMode3D
     
    Dim instance As New DicomImage3D(volume, Type)
    public DicomImage3D( 
       DicomVolume volume,
       RenderMode3D Type
    )
    public:
    DicomImage3D( 
       DicomVolume^ volume,
       RenderMode3D Type
    )

    Parameters

    volume
    The volume from which to create the image
    Type
    The intial rendering mode
    Remarks

    Multiple images may share the same volume, and this should be used where possible to save both general and video RAM.

    The rendering mode may subsequently be changed without creating a new image object.

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also