Class SoIntensityBinHistogramQuantification
- 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.imageanalysis.globalmeasures.SoIntensityBinHistogramQuantification
-
- All Implemented Interfaces:
SafeDisposable
public class SoIntensityBinHistogramQuantification extends SoImageVizEngine
SoIntensityBinHistogramQuantification
engine. This engine computes the histogram of a gray level image. The input range is divided into equal intervals of a given size. The histogram is then the number of pixels having values in each interval of a class.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SoIntensityBinHistogramQuantification.SbIntensityBinHistogramDetail
Results details ofSoIntensityBinHistogramQuantification
.-
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
binSize
The size of a class of the histogram.SoSFImageDataAdapter
inImage
The input gray scale image.SoSFVec2f
intensityRangeInput
The minimal and maximal value of the histogram Default value isSbVec2f
(0.0f,255.0f).SoImageVizEngineAnalysisOutput<SoIntensityBinHistogramQuantification.SbIntensityBinHistogramDetail>
outResult
The output histogram.-
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 SoIntensityBinHistogramQuantification()
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
-
inImage
public final SoSFImageDataAdapter inImage
The input gray scale image. Default value is NULL. Supported types include: grayscale binary label image.
-
intensityRangeInput
public final SoSFVec2f intensityRangeInput
The minimal and maximal value of the histogram Default value isSbVec2f
(0.0f,255.0f).
-
binSize
public final SoSFFloat binSize
The size of a class of the histogram. Note that the histogram is divided into equal intervals. Default value is 25.0f.
-
outResult
public final SoImageVizEngineAnalysisOutput<SoIntensityBinHistogramQuantification.SbIntensityBinHistogramDetail> outResult
The output histogram. Default value is NULL.
-
-