DicomObjects.NET.V8
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 Point3D, _
       ByVal Size As SizeF _
    ) 
    'Usage
     
    Dim instance As DicomImageCurvedMPR
    Dim Points() As Point3D
    Dim Size As SizeF
     
    instance.SetCurve(Points, Size)
    public void SetCurve( 
       Point3D[,] Points,
       SizeF Size
    )
    public:
    void SetCurve( 
       array<Point3D>^ Points,
       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.0 or higher

    See Also