Class SoRadialGradientCenteredProcessing3d
- 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.gradient.SoRadialGradientCenteredProcessing3d
-
- All Implemented Interfaces:
SafeDisposable
public class SoRadialGradientCenteredProcessing3d extends SoImageVizEngine
SoRadialGradientCenteredProcessing3d
engine. TheSoRadialGradientCenteredProcessing3d
engine performs a projected gradient computing the directional vector.For an introduction, see:
- section Edge Detection
- section Images Filters
- Introduction to Gradient
In the continuous 3-D case, for a given pixel and knowing the gradient , and , the projected gradient of an image is defined along the unitary vector , as :
The
SoRadialGradientCenteredProcessing3d
engine performs a projected gradient computing the directional vector from a single given center. For all pixel in the image, is the center.- See Also:
SoGradientOperatorProcessing3d
,SoRadialGradientContourProcessing3d
,SoRadialGradientLabelProcessing3d
,SoRadialGradientCenteredProcessing2d File format/default: RadialGradientCenteredProcessing3d { inGradientXImage NULL inGradientYImage NULL inGradientZImage NULL projectionCenter 3 3 3 } Library references: pgradient_centered3d
-
-
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 SoSFImageDataAdapter
inGradientXImage
The input X-gradient image.SoSFImageDataAdapter
inGradientYImage
The input Y-gradient image.SoSFImageDataAdapter
inGradientZImage
The input Z-gradient image.SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter>
outNormalImage
The output normal gradient image.SoSFVec3i32
projectionCenter
The center of projection coordinates.-
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 SoRadialGradientCenteredProcessing3d()
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
-
inGradientXImage
public final SoSFImageDataAdapter inGradientXImage
The input X-gradient image. Default value is NULL. Supported types include: grayscale color image.
-
inGradientYImage
public final SoSFImageDataAdapter inGradientYImage
The input Y-gradient image. Default value is NULL. Supported types include: grayscale color image.
-
inGradientZImage
public final SoSFImageDataAdapter inGradientZImage
The input Z-gradient image. Default value is NULL. Supported types include: grayscale color image.
-
projectionCenter
public final SoSFVec3i32 projectionCenter
The center of projection coordinates. Default value isSbVec3i32(3,3,3)
.
-
outNormalImage
public final SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter> outNormalImage
The output normal gradient image. Default value is NULL. Supported types include: grayscale binary label color image.
-
-