DicomObjects.NET10 Documentation
DicomObjects Namespace / DicomImageFusion Class / ImagePlane Method
Example



In This Topic
    ImagePlane Method (DicomImageFusion)
    In This Topic
    The currently displayed plane of this image.
    Syntax
    'Declaration
     
    
    Public Overrides Function ImagePlane( _
       ByVal Frame1 As Integer _
    ) As Plane3D
    'Usage
     
    
    Dim instance As DicomImageFusion
    Dim Frame1 As Integer
    Dim value As Plane3D
     
    value = instance.ImagePlane(Frame1)
    public override Plane3D ImagePlane( 
       int Frame1
    )
    public:
    Plane3D ImagePlane( 
       int Frame1
    ) override 

    Parameters

    Frame1

    Return Value

    The plane of the image in 3D space, or null if not applicable to this image. For fusion images, this is the plane of the first image in the collection.
    Example
    DicomImage image = new DicomImage("your_3D_dicom_image.dcm);
    DicomVolume volume = new DicomVolume(image);
    DicomImage3D image3D = new DicomImage3D(volume, RenderMode3D.MPR);
    DicomImageCollection collection3D = new DicomImageCollection()
    {
        image3D
    }
    DicomImageFusion fusedImage = new DicomImageFusion(collection3D);
                        
    int frame = 1;
    Plane3D? plane = fusedImage.ImagePlane(frame);
    Viewer.Images.Add(fusedImage);
    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