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
DicomImage image = new DicomImage("your_3D_dicom_image.dcm); DicomVolume volume = new DicomVolume(image); DicomImageCurvedMPR curvedMPR = new DicomImageCurvedMPR(volume); Point3D[,] curvePoints = new Point3D[1,5] { { new Point3D(-50, 0, 0), new Point3D(-25, 10, 10), new Point3D(0, 20, 20), new Point3D(25, 10, 30), new Point3D(50, 0, 40) } } SizeF outputSize = new SizeF(200, 100); curvedMPR.SetCurve(curvePoints, outputSize); Viewer.Images.Add(curvedMPR);