TableOfConfusion_Images


Computes statistics from a confusion matrix for image of groundTruth and results.

Syntax

C++
C#
Python
 
def TableOfConfusion_Images(
	inImageGroundTruth: Image,
	inImageResults: Image,
	inThreshold: int,
	outConfusionTable: ConfusionTable,
	/
)
-> (
	outTruePositive: int,
	outFalsePositive: int,
	outTrueNegative: int,
	outFalseNegative: int
)

Parameters

Name Type Default Description
Input value inImageGroundTruth Image Binary image of ground truth
Input value inImageResults Image
Input value inThreshold int
Output value outTruePositive int
Output value outFalsePositive int
Output value outTrueNegative int
Output value outFalseNegative int
Output value outConfusionTable ConfusionTable