Class SoBlendWithImageProcessing
- 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.arithmeticandlogic.arithmeticoperations.SoBlendWithImageProcessing
-
- All Implemented Interfaces:
SafeDisposable
public class SoBlendWithImageProcessing extends SoImageVizEngine
SoBlendWithImageProcessing
engine produces a linear combination between two images. The SoBlendWithImageFiltering engine produces a linear combination between two images and . The formula is:Remarks:
- Overflows may occur.
- The result of a subtraction between two binary images is a short integer image; this operation is not equivalent to a logical difference.
- Be careful with negative values and the way they are visualized.
-
-
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
inImage1
The 1st input image.SoSFImageDataAdapter
inImage2
The 2nd input image.SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter>
outImage
The output image.SoSFFloat
weight
The percentage of first image intensity.-
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 SoBlendWithImageProcessing()
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
-
inImage1
public final SoSFImageDataAdapter inImage1
The 1st input image. Default value is NULL. Supported types include: grayscale binary label color image.
-
inImage2
public final SoSFImageDataAdapter inImage2
The 2nd input image. Default value is NULL. Supported types include: grayscale binary label color image.
-
weight
public final SoSFFloat weight
The percentage of first image intensity. Default value is 60.0f.
-
outImage
public final SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter> outImage
The output image. Default value is NULL. Supported types include: grayscale binary label color image.
-
-