Class SoLogicalImageProcessing
- 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.logicaloperations.SoLogicalImageProcessing
-
- All Implemented Interfaces:
SafeDisposable
public class SoLogicalImageProcessing extends SoImageVizEngine
SoLogicalImageProcessing
engine performs logical operations between two image.SoLogicalImageProcessing
performs a logical operation between an image and another image.For an introduction to logical operations, see section Logical Operations.
See also:
SoLogicalValueProcessing
,SoArithmeticImageProcessing
,SoLogicalNotProcessing
.File format/default:
LogicalImageProcessing {
logicalOperator AND inImage1 NULL inImage2 NULL
Library references: logical_andimage logical_nandimage logical_norimage logical_nxorimage logical_orimage logical_subimage logical_xorimage
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SoLogicalImageProcessing.LogicalOperators
-
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.SoSFEnum<SoLogicalImageProcessing.LogicalOperators>
logicalOperator
Select the operator to apply.SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter>
outImage
The output 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 SoLogicalImageProcessing()
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
-
logicalOperator
public final SoSFEnum<SoLogicalImageProcessing.LogicalOperators> logicalOperator
Select the operator to apply. . Default is AND
-
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.
-
outImage
public final SoImageVizEngineOutput<SoSFImageDataAdapter,SoImageDataAdapter> outImage
The output image. Default value is NULL. Supported types include: grayscale binary label color image.
-
-