Parameters
- Centre
- The coordinates of the centre of the plane
- Normal
- A vector defining the direction of view
- Up
- The direction to be "up" in the resulting view.
- Zoom
- The zoom factor to use - see notes in remarks
All coordinates are in "real world" coordinates, measured in mm.
Zoom is relative to a "standard" zoom which is internally calculated to include the whole image within the visible display area.
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); float normalOffset = 15.0f; fusedImage.TranslateNormal(normalOffset); Viewer.Images.Add(fusedImage);