Class SoProxyDataAdapter
- java.lang.Object
-
- com.openinventor.inventor.Inventor
-
- com.openinventor.inventor.misc.SoBase
-
- com.openinventor.inventor.fields.SoFieldContainer
-
- com.openinventor.imageviz.nodes.images.SoImageDataAdapter
-
- com.openinventor.imageviz.nodes.images.SoProxyDataAdapter
-
- All Implemented Interfaces:
SafeDisposable
public class SoProxyDataAdapter extends SoImageDataAdapter
Proxy image data adapter for in memory data. Defines a subset of the original image as an image. SeeSoImageDataAdapter
for methods to access the data.File format/default:
ProxyDataAdapter {
extent 0,0,0, 1,1,1 orientation 0 0 0 1 image NULL roi 0 0 0 0 0 0 0 0 channels 1 0 - See Also:
SoImageDataAdapter
,SoFileDataAdapter
,SoVolumeReaderAdapter
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.openinventor.imageviz.nodes.images.SoImageDataAdapter
SoImageDataAdapter.Interpretations
-
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
-
Field Summary
Fields Modifier and Type Field Description SoMFInt32
channels
Defines the list of channels selected on theimage
.SoSFImageDataAdapter
image
Defines the original image.SoSFBox4i32
roi
Defines a region of interest (ROI) in voxels on the original image.-
Fields inherited from class com.openinventor.imageviz.nodes.images.SoImageDataAdapter
extent, interpretation, orientation
-
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
-
Constructor Summary
Constructors Constructor Description SoProxyDataAdapter()
Default constructor.
-
Method Summary
-
Methods inherited from class com.openinventor.imageviz.nodes.images.SoImageDataAdapter
getColumnDirection, getDataAccessor, getExtent, getImageDataType, getIndexToPhysicalTransformation, getInterpretation, getOrigin, getPlaneDirection, getRowDirection, getSize, getVoxelSize, setDirection, setInterpretation, setOrigin, setVoxelSize
-
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, touch
-
Methods inherited from class com.openinventor.inventor.Inventor
getNativeResourceHandle
-
-
-
-
Field Detail
-
image
public final SoSFImageDataAdapter image
Defines the original image. Default value is NULL.
-
roi
public final SoSFBox4i32 roi
Defines a region of interest (ROI) in voxels on the original image. Default value is an empty box. The box is defined by a 'min' corner and a 'max' corner. If the specified box is larger than the image, the box is clamped to the dimensions of the image.Example for an 512x512 image and a {min=(256,256), max=(400,600)}-box, the resulting box will be {min=(256,256), max=(400,512)}-box.
-
-