DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / ImagePlane Method
Example

In This Topic
    ImagePlane Method (DicomImage)
    In This Topic
    The currently displayed plane of this image.
    Syntax
    'Declaration
     
    
    Public Overridable Function ImagePlane( _
       ByVal Frame1 As System.Integer _
    ) As System.Nullable(Of Plane3D)
    public virtual System.Nullable<Plane3D> ImagePlane( 
       System.int Frame1
    )

    Parameters

    Frame1

    Return Value

    The plane of the image in 3D space, or null if not applicable to this image.
    Example
    DicomImage image = new DicomImage("applicable_dicom_image.dcm");
    int frame = 5;
    var point3D = image.ImagePlane(frame);
                        
    // Example Output: {Distance: 24.5914314848484 Normal: -0.0232813206389691,0.142486141101314,0.989522939840869}
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also