Class SoChamferDistanceMapProcessing3d
- 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.SoChamferDistanceMapProcessing3d
-
- All Implemented Interfaces:
SafeDisposable
public class SoChamferDistanceMapProcessing3d extends SoImageVizEngine
SoChamferDistanceMapProcessing3d
engine. TheSoChamferDistanceMapProcessing3d
engine computes a 3D chamfer distance transformation.This engine is like the
SoChessboardDistanceMapProcessing
engine but takes care of the diagonals.
-
-
Nested Class Summary
-
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
cornerDistance
The distance between 2 pixels with min 3D connexity.SoSFFloat
edgeDistance
The distance between 2 pixels with middle 3D connexity.SoSFFloat
faceDistance
The distance between 2 pixels with max 3D connexity.SoSFImageDataAdapter
inBinaryImage
The input 3D binary image.SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter>
outMapImage
The output distance map 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 SoChamferDistanceMapProcessing3d()
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
-
inBinaryImage
public final SoSFImageDataAdapter inBinaryImage
The input 3D binary image. Default value is NULL. Supported types include: binary image.
-
faceDistance
public final SoSFFloat faceDistance
The distance between 2 pixels with max 3D connexity. Default value is 1.0f.
-
edgeDistance
public final SoSFFloat edgeDistance
The distance between 2 pixels with middle 3D connexity. Default value is 1.414f.
-
cornerDistance
public final SoSFFloat cornerDistance
The distance between 2 pixels with min 3D connexity. Default value is 1.73f.
-
outMapImage
public final SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter> outMapImage
The output distance map image. Default value is NULL. Supported types include: grayscale binary label color image.
-
-