Click or drag to resize
SoSupervisedTextureClassificationProcessing3dOutMapTypes Enumeration

Namespace: OIV.ImageViz.Engines.ImageSegmentation.Classification
Assembly: OIV.ImageViz (in OIV.ImageViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax
public enum OutMapTypes
Members
  Member nameValueDescription
CLOSEST_DISTANCE0

The outMapImage represents the mahalanobis distance to the class selected by the classification.

The closer to 0 this metric is, the more confident the classification is.

RELATIVE_DISTANCE1

The outMapImage represents the mahalanobis distance to the class selected by the classification( d1 ) weighted by the gap with the second closest distance( d2 ).

The smaller this metric is, the more confident and less ambiguous the classification is. Map Value = log( d1 / ( d2 - d1 ) ).

CLASS_DISTANCE2

The outMapImage is a multichannel image where each channel represents the distance to the corresponding class.

NONE3

No output map.

Remarks