Click or drag to resize
SoVolumeRenderingQualityGradientQualities Enumeration

Gradient Quality mode.

Namespace: OIV.VolumeViz.Nodes
Assembly: OIV.VolumeViz (in OIV.VolumeViz.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public enum GradientQualities
Members
  Member nameValueDescription
LOW0

Use the forward difference technique to compute the gradient.

This is a fast technique but it gives a lower quality gradient.

MEDIUM1

Use the central difference technique to compute the gradient.

This is a compromise between quality and speed.

HIGH2

Use a Sobel filter to compute the gradient.

This gives hiqh quality gradients at the expense of speed.

Remarks