Utilizing just volume reconstruction algorithm in a program #1027
Replies: 1 comment 7 replies
-
The volume reconstruction is implemented in IGSIO (vtkIGSIOVolumeReconstructor). Plus uses a subclass called vtkPlusVolumeReconstructor with only minor modifications. Does your program already use VTK? If so it would be easy to add the algorithm. The best example of using the class is probably in SlicerIGT: vtkSlicerVolumeReconstructionLogic. This function in SlicerIGT is responsible for adding a single slice to the volume reconstructor: https://github.com/SlicerIGT/SlicerIGT/blob/d3fd2b26a4c10f6319aa8ae4173abc793c4113ce/VolumeReconstruction/Logic/vtkSlicerVolumeReconstructionLogic.cxx#L321-L407. Let me know if you have any questions about the code. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I have an internally developed tracking system (provides 6 DOF frames) and also ultrasound images (2D fan) that are already constructed into an existing program that I have running. I wanted to reconstruct these into a 3D volume. Is there a way I can use the Volume Reconstruction algorithm in a C++ program I already have written? Are there examples of how to pack the localization frames, images, and calibration matrix together in a form that the volume reconstruction can work off of?
Thanks so much!
Serena
Beta Was this translation helpful? Give feedback.
All reactions