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 | |
|---|---|---|---|---|
![]() |
inImageGroundTruth | Image | Binary image of ground truth | |
![]() |
inImageResults | Image | ||
![]() |
inThreshold | int | ||
![]() |
outTruePositive | int | ||
![]() |
outFalsePositive | int | ||
![]() |
outTrueNegative | int | ||
![]() |
outFalseNegative | int | ||
![]() |
outConfusionTable | ConfusionTable |


