Hello
Problem:
I am running into issues extracting oblique slices from my vtkImageData
using vtkImageReslice
. After applying a rotation to my reslice axes, output slices are cut off and appear to be rotated around the volume’s origin.
Information:
I have a simple solution that combines cornerstone.js
and vtkImageReslice
for generating orthogonal slices:
I would like to add support for oblique images. As I currently understand it, you can accomplish that using vtkImageReslice
by following the steps outlined in this posting:
https://markmail.org/message/ycfr246az23acrl7
(Combining a single reslice and transform to achieve the desired output slice)
The vtk.js vtkImageReslice documentation mentions resliceTransform
, but it’s implementation is a // todo
stub.
Questions:
- Is it possible to generate oblique slices with the current
vtkImageReslice
implementation invtk.js
? - Is a transform required, and if so, is there a way to accomplish it outside of
resliceTransform
?
If there is a better place for me to ask questions like this, please let me know.