Class SoGetObliquePlaneFromVolumeProcessing3d
- java.lang.Object
-
- com.openinventor.inventor.Inventor
-
- com.openinventor.inventor.misc.SoBase
-
- com.openinventor.inventor.fields.SoFieldContainer
-
- com.openinventor.inventor.engines.SoEngine
-
- com.openinventor.imageviz.engines.SoImageVizEngine
-
- com.openinventor.imageviz.engines.imagemanipulation.imageediting.SoGetObliquePlaneFromVolumeProcessing3d
-
- All Implemented Interfaces:
SafeDisposable
public class SoGetObliquePlaneFromVolumeProcessing3d extends SoImageVizEngine
SoGetObliquePlaneFromVolumeProcessing3d
engine. TheSoGetObliquePlaneFromVolumeProcessing3d
engine extracts a section of a 3D image, given a point of this section and the angles to its normal.See also:
SoGetPlaneFromVolumeProcessing3d
.File format/default:
GetObliquePlaneFromVolumeProcessing3d {
inImage NULL pointCoordinates 0 0 0 angleTheta 0.0f anglePhi 0.0f precisionMode NEARBY_PIXEL
Library references: getobliqueplane
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SoGetObliquePlaneFromVolumeProcessing3d.PrecisionModes
-
Nested classes/interfaces inherited from class com.openinventor.imageviz.engines.SoImageVizEngine
SoImageVizEngine.ComputeModes, SoImageVizEngine.EventArg, SoImageVizEngine.Neighborhood3ds
-
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
-
Field Summary
Fields Modifier and Type Field Description SoSFFloat
anglePhi
The angle in degree between the Normal and the OZ axis (phi).SoSFFloat
angleTheta
The angle between Ox and the projection of the Normal on XoY plane (theta).SoSFImageDataAdapter
inImage
The input image.SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter>
outImage
The output image.SoSFVec3i32
pointCoordinates
Coordinates of a point of the 3D section.SoSFEnum<SoGetObliquePlaneFromVolumeProcessing3d.PrecisionModes>
precisionMode
Select the interpolation mode.-
Fields inherited from class com.openinventor.imageviz.engines.SoImageVizEngine
onBegin, onEnd, onProgress
-
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
-
Constructor Summary
Constructors Constructor Description SoGetObliquePlaneFromVolumeProcessing3d()
Constructor.
-
Method Summary
-
Methods inherited from class com.openinventor.imageviz.engines.SoImageVizEngine
abortEvaluate, isEvaluating, startEvaluate, waitEvaluate
-
Methods inherited from class com.openinventor.inventor.engines.SoEngine
copy, getByName, getOutput, getOutputName
-
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
-
inImage
public final SoSFImageDataAdapter inImage
The input image. Default value is NULL. Supported types include: grayscale binary label image.
-
pointCoordinates
public final SoSFVec3i32 pointCoordinates
Coordinates of a point of the 3D section. Default value isSbVec3i32(0,0,0)
.
-
angleTheta
public final SoSFFloat angleTheta
The angle between Ox and the projection of the Normal on XoY plane (theta). Default value is 0.0f.
-
anglePhi
public final SoSFFloat anglePhi
The angle in degree between the Normal and the OZ axis (phi). Default value is 0.0f.
-
precisionMode
public final SoSFEnum<SoGetObliquePlaneFromVolumeProcessing3d.PrecisionModes> precisionMode
Select the interpolation mode. . Default is NEARBY_PIXEL
-
outImage
public final SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter> outImage
The output image. Default value is NULL. Supported types include: grayscale binary label color image.
-
-