Click or drag to resize
SoThresholdingByCriterionProcessingComparisonCriterions Enumeration

Namespace: OIV.ImageViz.Engines.ImageSegmentation.Binarization
Assembly: OIV.ImageViz (in OIV.ImageViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax
public enum ComparisonCriterions
Members
  Member nameValueDescription
LESS_THAN0

Voxels having a value less than the supplied value are set to 1, others are set to 0.

LESS_THAN_OR_EQUAL_TO1

Voxels having a value less than or equal to the supplied value are set to 1, others are set to 0.

EQUAL_TO2

Voxels having a value equal to the supplied value are set to 1, others are set to 0.

GREATER_THAN_OR_EQUAL_TO3

Voxels having a value greater than or equal to the supplied value are set to 1, others are set to 0.

GREATER_THAN4

Voxels having a value greater than the supplied value are set to 1, others are set to 0.

NOT_EQUAL_TO5

Voxels having a value different from the supplied value are set to 1, others are set to 0.

Remarks