Class SoEuclideanDistanceMapProcessing3d
- 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.mathematicalmorphology.distancemaps.SoEuclideanDistanceMapProcessing3d
-
- All Implemented Interfaces:
SafeDisposable
public class SoEuclideanDistanceMapProcessing3d extends SoImageVizEngine
SoEuclideanDistanceMapProcessing3d
image filter. This algorithm computes a 3D distance map for a 3D object. Each voxel will be assigned a value depending on the distance to the nearest object boundary. The boundary voxels of the object are assigned a value of zero whereas the assigned value increases as the distance increases. This algorithm computes distances using the Euclidean metric.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SoEuclideanDistanceMapProcessing3d.BorderConditions
This enumeration defines the border condition.static class
SoEuclideanDistanceMapProcessing3d.MappingModes
This enumeration defines all regions in which the distance map is computed.-
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 SoSFEnum<SoEuclideanDistanceMapProcessing3d.BorderConditions>
borderCondition
This field defines the border condition.SoSFImageDataAdapter
inBinaryImage
The input binary image.SoSFEnum<SoEuclideanDistanceMapProcessing3d.MappingModes>
mappingMode
This field defines the region where the distance map is computed.SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter>
outMapImage
Distance map of the input binary image.-
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 SoEuclideanDistanceMapProcessing3d()
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
-
mappingMode
public final SoSFEnum<SoEuclideanDistanceMapProcessing3d.MappingModes> mappingMode
This field defines the region where the distance map is computed. . Default is INSIDE
-
borderCondition
public final SoSFEnum<SoEuclideanDistanceMapProcessing3d.BorderConditions> borderCondition
This field defines the border condition. . Default is ZERO
-
inBinaryImage
public final SoSFImageDataAdapter inBinaryImage
The input binary image. Default value is NULL. Supported types include: binary image.
-
outMapImage
public final SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter> outMapImage
Distance map of the input binary image. Distance map of the shape represented by the input image. Each voxel is assigned to a value depending on the distance to the nearest object boundary. The output image will be a 32-bit floating image. Default value is NULL. Supported types include: binary image.
-
-