Class SoDataRange
- java.lang.Object
-
- com.openinventor.inventor.Inventor
-
- com.openinventor.inventor.misc.SoBase
-
- com.openinventor.inventor.fields.SoFieldContainer
-
- com.openinventor.inventor.nodes.SoNode
-
- com.openinventor.ldm.nodes.SoDataRange
-
- All Implemented Interfaces:
SafeDisposable
public class SoDataRange extends SoNode
Range of data values to be mapped to the color map. This node allows you to specify the range of scalar data values in a data set (SoDataSet
orSoVolumeData
) that will be mapped into the color map (SoTransferFunction
). When the volume data type is larger than the data type on the GPU, for example float data scaled to byte data, it also specifies the range of scalar data values that will be scaled to fit in the GPU data type.By default VolumeViz maps the entire range of the voxel's data type (e.g. 0..65535 for unsigned short) into the colormap. This is often correct for byte (8 bit) voxels, but seldom correct for 16 bit voxels and never correct for floating point voxels. Use an
SoDataRange
node to specify the actual (or desired) range of data values to be mapped. For example, a typical initial data range for DICOM data calibrated in Hounsfield units might be -1000 to 3000.Data characteristics:
- The voxel value data type can be queried using the
SoDataSet
method getDataType(). - The number of bytes in a voxel value can be queried using the
SoDataSet
method getDataSize(). - The actual min and max values for the data set can be queried using the
SoDataSet
method getMinMax().
Note that this method might force VolumeViz to load the entire data set if the volume reader for that format does not implement the getMinMax query. Normally for an LDM format data set, the min and max values are stored in the LDM header. For a non-LDM data set, if a filename and/or reader have been specified and the data set has not yet been loaded, VolumeViz will load the entire data set to compute the min and max values. For a large data set this may take a long time. - DICOM: The Window Center (0028,1050) and Window Width (0028,1051) values (if present in the data set) can be queried by using an
SoVRDicomData
object obtained from theSoVRDicomFileReader
or by using the MedicalHelper class. You can also use the MedicalHelper method dicomAdjustDataRange.
When using multiple volumes (see
SoMultiDataSeparator
), a singleSoDataRange
node can be used to specify the data range for all volumes or each volume can have its own independent data range. In the second case, create oneSoDataRange
node for each volume and set thedataRangeId
equal to theSoDataSet.dataSetId
of the corresponding volume.Note that the meaning of the min and max fields in
SoDataRange
is quite different than the meaning of the minValue and maxValue fields inSoTransferFunction
. The fields inSoDataRange
specify the range of voxel values that will be mapped into the full color map. The fields inSoTransferFunction
specify the range of indices in the color map that will actually be used to store the color map. The visual effect changing these fields can be quite similar, but there are trade-offs to be aware of. Changing theSoTransferFunction
fields is generally much faster and can be a useful approximation of changing the data range, but the resolution of the color map (the ratio of data values to color map entries) is reduced.NOTE: Setting the min value greater than or equal to the max value will cause this node to be ignored.
Brightness and contrast:
Often the distribution of voxel values within the actual data range is not uniform and more details can be seen by adjusting the
Performance:SoDataRange
values to increase brightness and/or contrast. This is particularly true when using a gray scale color map (for example the predefined INTENSITY map inSoTransferFunction
). In medical imaging this range setting is often specified by the window center and window width.
The window center is the image intensity that will be displayed as a medium-gray and the window width is the range of data values between full black and full white. For example, if the data volume contains byte data with a native range of 0 to 255, the default data range (0 to 255) is effectively specifying a window center of 128 and width of 256. To increase contrast in the resulting image we might set a data range of 20 to 110, which makes the window center and width 65 and 90 respectively.For larger data types, changing the data range may require VolumeViz to recreate the data textures on the GPU. This is necessary to maximize use of the available bits of precision on the GPU. Since Open Inventor 9.6, recreating data textures should not be required for 8 bit data or for 16 bit data when the
SoDataSet.texturePrecision
field is set to 16.
Recreating data textures may be slow for larger volumes, even in the 512^3 range. There are several parameters that significantly affect this:- Tile size:
For backward compatibility, the default tile size is still only 64. This is quite small for modern CPU/GPU hardware. The smaller the tile size, the larger the total number of tiles that must be managed by VolumeViz. This overhead can be significant, especially for operations that require reloading the data textures on the GPU, for example, changing the data range (SoDataRange
). For smaller volumes, like 512^3, it can be efficient to set the tile size large enough to contain the entire volume. For very large volumes, larger tile sizes are efficient forSoVolumeRender
but somewhat inefficient for slice rendering because complete tiles must be loaded even though the slice only uses part of the data. Applications should experiment.
For volumes stored in LDM file format, the tile size must be specified when the volume is converted to LDM (seeSoConverter
and the "-t" option). For other data data formats the tile size should be specified after theSoVolumeData
node is created, using the ldmResourceParameters field, but before setting the filename field. - LDM_USE_IN_MEM_COMPRESSION
This environment variable (seeSoPreferences
) affects much more than its name implies. VolumeViz always manages data as "tiles", regardless of the data format. In many cases VolumeViz must create (or uncompress) the tiles at run time. These cases include in-memory volumes, any volume reader that does not implement the readTile() method (all built-in formats except LDM) and compressed LDM format files. If this variable is true ( the default value), then VolumeViz only keeps a small cache of tiles in memory. See theSoBufferObject
method getBufferObjectCache() for the current default and note that this setting is separate from the max main memory parameter. If a tile's data is needed and that tile is not in the cache, the tile must be recreated. This overhead can be significant, especially for operations that require recreating data textures on the GPU, for example, changing the data range (SoDataRange
). We recommend setting this variable to false unless the memory conserving feature for compressed tiles is critical. SoDataSet.texturePrecision
When the data set's texturePrecision is at least equal to the numSignificantBits, then the data range scaling can be applied on the fly during rendering (i.e. on the GPU). This implies that data textures don't need to be regenerated when the data range changes and interactivity is much better.- SoVolumeRender.subDivideTiles
This parameter doesn't actually resend data to the GPU but it does require updating the sub-tile min/max values, which can be quite costly. Setting subDivideTiles to false may increase DataRange performance (the default is false).
If the data set contains explicit RGBA values (
SoVolumeData
dataRGBA field is true), thenSoDataRange
andSoTransferFunction
have no effect on rendering.File format/default:
DataRange{
dataRangeId 1 min 0 max 0 mapOnFullColorRange true Action behavior:
SoCallbackAction
,SoGLRenderAction
,SoPickAction
,SoWriteAction
,SoGetBoundingBoxAction
Sets a data range in the current traversal state.- See Also:
SoDataSet
,SoTransferFunction
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.openinventor.inventor.nodes.SoNode
SoNode.RenderModes
-
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
-
Field Summary
Fields Modifier and Type Field Description SoSFInt32
dataRangeId
This field allows the use of multiple data ranges for the same shape.SoSFBool
mapOnFullColorRange
Specifies how to map data values that are outside of the data range.SoSFDouble
max
Maximum data value of the data range.SoSFDouble
min
Minimum data value of the data range.-
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
-
Constructor Summary
Constructors Constructor Description SoDataRange()
Constructor.
-
Method Summary
-
Methods inherited from class com.openinventor.inventor.nodes.SoNode
affectsState, callback, copy, copy, distribute, doAction, getAlternateRep, getBoundingBox, getByName, getMatrix, getPrimitiveCount, getRenderEngineMode, getRenderUnitID, GLRender, GLRenderBelowPath, GLRenderInPath, GLRenderOffPath, grabEventsCleanup, grabEventsSetup, handleEvent, isBoundingBoxIgnoring, isOverride, pick, rayPick, search, setOverride, touch, write
-
Methods inherited from class com.openinventor.inventor.fields.SoFieldContainer
copyFieldValues, copyFieldValues, enableNotify, fieldsAreEqual, get, getAllFields, getEventIn, getEventOut, getField, getFieldName, hasDefaultValues, isNotifyEnabled, set, setToDefaults
-
Methods inherited from class com.openinventor.inventor.misc.SoBase
dispose, getName, isDisposable, isSynchronizable, setName, setSynchronizable
-
Methods inherited from class com.openinventor.inventor.Inventor
getNativeResourceHandle
-
-
-
-
Field Detail
-
dataRangeId
public final SoSFInt32 dataRangeId
This field allows the use of multiple data ranges for the same shape. By default all data range nodes are initialized to a data range id of 1. If you want to use multiple data ranges, different data range ids must be assigned. The data range id is only used in a render compositing scheme (seeSoDataSet
).- Since:
- Open Inventor 6.1.2
-
min
public final SoSFDouble min
-
max
public final SoSFDouble max
Maximum data value of the data range.
-
mapOnFullColorRange
public final SoSFBool mapOnFullColorRange
Specifies how to map data values that are outside of the data range. If mapOnFullColorRange is true (default), then any data values less than or equal to themin
data value are mapped to the first color entry and any data values greater than or equal to themax
data value are mapped to the last color entry.If mapOnFullColorRange is false, then any data value less than
min
data value is mapped to the first color entry and themin
data value is mapped to the second color entry; any data value greater than themax
data value is mapped to the last color entry and themax
data value is mapped to the next to the last color entry.
-
-