DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImageCurvedMPR Class / SetCurve Method
User defined points in 3D real world space that are used to define the curved MPR projection
Size of the reconstructed output image in mm






In This Topic
    SetCurve Method
    In This Topic
    Defines the coordinates of the curve to represent the curved MPR
    Syntax
    'Declaration
     
    
    Public Sub SetCurve( _
       ByVal Points(,) As System.Windows.Media.Media3D.Point3D, _
       ByVal Size As System.Drawing.SizeF _
    ) 
    'Usage
     
    
    Dim instance As DicomImageCurvedMPR
    Dim Points() As System.Windows.Media.Media3D.Point3D
    Dim Size As System.Drawing.SizeF
     
    instance.SetCurve(Points, Size)
    public void SetCurve( 
       System.Windows.Media.Media3D.Point3D[,] Points,
       System.Drawing.SizeF Size
    )
    public procedure SetCurve( 
        Points: System.Windows.Media.Media3D.Point3Darray of;
        Size: System.Drawing.SizeF
    ); 
    public function SetCurve( 
       Points : System.Windows.Media.Media3D.Point3D[,],
       Size : System.Drawing.SizeF
    );
    public: void SetCurve( 
       System.Windows.Media.Media3D.Point3D[,]* Points,
       System.Drawing.SizeF Size
    ) 
    public:
    void SetCurve( 
       System.Windows.Media.Media3D.array<Point3D>^ Points,
       System.Drawing.SizeF Size
    ) 

    Parameters

    Points
    User defined points in 3D real world space that are used to define the curved MPR projection
    Size
    Size of the reconstructed output image in mm
    Remarks
    The array of points can have any dimension, and DicomObjects will interpolate between the points as required. The size (mm in real world units) needs to be provided explicitly rather than calculated from the points, as the points are not necessarily required to lie on a simple curved plane.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also