Class SoDijkstraShortestPathProcessing2d
- 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.edgedetection.edgemarking.SoDijkstraShortestPathProcessing2d
-
- All Implemented Interfaces:
SafeDisposable
public class SoDijkstraShortestPathProcessing2d extends SoImageVizEngine
SoDijkstraShortestPathProcessing2dengine. TheSoDijkstraShortestPathProcessing2dengine finds the shortest path through an image using local maxima or minima.For an introduction, see section Edge Detection.
This engine is used to find the shortest path through an image using local maxima or minima.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSoDijkstraShortestPathProcessing2d.AxisSelectionsstatic classSoDijkstraShortestPathProcessing2d.IntensityModes-
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<SoDijkstraShortestPathProcessing2d.AxisSelections>axisSelectionSelect the direction axis.SoSFImageDataAdapterinGrayImageThe input grayscale image.SoSFImageDataAdapterinMaskImageThe binary image for the mask or empty (command looks for only inside).SoSFEnum<SoDijkstraShortestPathProcessing2d.IntensityModes>intensityModeThe type of enclosed objects.SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter>outBinaryImageThe output 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 SoDijkstraShortestPathProcessing2d()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
-
inGrayImage
public final SoSFImageDataAdapter inGrayImage
The input grayscale image. Default value is NULL. Supported types include: grayscale binary label image.
-
inMaskImage
public final SoSFImageDataAdapter inMaskImage
The binary image for the mask or empty (command looks for only inside). This parameter is optional. Default value is NULL. Supported types include: binary color image.
-
axisSelection
public final SoSFEnum<SoDijkstraShortestPathProcessing2d.AxisSelections> axisSelection
Select the direction axis. . Default is X_AXIS
-
intensityMode
public final SoSFEnum<SoDijkstraShortestPathProcessing2d.IntensityModes> intensityMode
The type of enclosed objects. . Default is LIGHT
-
outBinaryImage
public final SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter> outBinaryImage
The output binary image. Default value is NULL. Supported types include: binary image.
-
-