rotate ROI

VolumeViz rotate ROI

The SoROI and SoROIManip nodes only support an axis-aligned region of interest (cropping box). This is intentional because axis-aligned ROI is the most common use case and can be highly optimized.

It can also be useful to specify a cropping box that is not axis-aligned. This can be done using the SoVolumeClippingGroup node, which clips volume rendering against any closed shape defined by polygonal geometry. The geometry clipping feature can do much more complicated things, but in this case we just need a "box" to clip against. One way is to use an SoCube node for the clipping geometry and an SoTransform node to specify the size, position and rotation of the ROI.

The geometry inside the clipping group is not actually rendered (because it would generally hide the volume data we are trying to show to the user). So we may want to also create some "feedback" geometry outside the clipping group to show the user where the ROI is currently located. We can use SoCube again plus an SoDrawStyle node to render only the edges of the box. The feedback geometry will need its own SoTransform node, which could be a second instance of the clipping group transform node or have its fields connected to the clipping group transform node.

We may also want to allow the user to directly manipulate the rotated ROI. For an axis-aligned ROI, the SoTabBoxDragger is a good solution, but this dragger (by design) does not provide rotation. A simple solution is to use an SoTransformerDragger. This dragger provides scale, rotate and translate manipulation with nice feedback. Using the Shift key, it also provides "constrained" manipulation which is very convenient. Constrained is the default for rotation (clicking a 'green ball'), but not for scale and translate. Using shift-click for scale and translation is the most convenient way to use the dragger in this application. If you have the time, you might be able to create a better solution by creating a new composite dragger that combines multiple simple draggers.

The main issue with using any dragger with volume clipping is that the dragger geometry must _not_ be a child of the clipping group. If it is, then VolumeViz will also try to clip against the dragger geometry and the result will not be pretty. Put the dragger in a separate group and connect the draggers fields to the transform node in the clipping group.

Notes:

FILES:

SEE ALSO

SoVolumeData, SoROIManip, SoROI, SoVolumeClippingGroup

SCREENSHOT:


Open Inventor by FEI reference manual, generated on 19 Aug 2019
Copyright © FEI S.A.S. All rights reserved.
http://www.openinventor.com/