You are here: Start » DLInvoke.DL_DetectAnomalies2_WithThresholds
Executes a Detect Anomalies 2 model on a single input image.
Namespace: | Fil |
---|---|
Assembly: | FilNet.DL.Cpu.dll |
Syntax
C++
C#
public static void DL_DetectAnomalies2_WithThresholds ( Fil.Image inImage, Fil.DetectAnomalies2ModelId inModelId, float inT1, Optional<float> inT2, float inScaleHeatmap, Fil.Heatmap outHeatmap, out bool outIsValid, out float outScore, out bool outIsConfident, Conditional<Fil.Region> outRoi )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inModelId | Fil.DetectAnomalies2ModelId | Identifier of a Detect Anomalies 2 model. | ||
![]() | inT1 | float | 'Good' threshold value. Default value: 100.0f. | ||
![]() | inT2 | Ftl.Optional<float> | 'Bad' threshold value, if not set 'Good' threshold will be used. Default value: 156.0f. | ||
![]() | inScaleHeatmap | float | Modify visualization of the output heatmap. This does not affect outScore. Default value: 1.0f. | ||
![]() | outHeatmap | Fil.Heatmap | Returns a heatmap indicating found anomalies. | ||
![]() | outIsValid | bool | Returns true if no anomalies were found. | ||
![]() | outScore | float | Returns score of the image. | ||
![]() | outIsConfident | bool | Returns false if the score is between T1 and T2. | ||
![]() | outRoi | Ftl.Conditional<Fil.Region> |