You are here: Start » FIL.NET » Function Reference » Computer Vision » Image Analysis » FIL.CompareGoldenTemplate2
Compares an image with a multi-image model using an ensemble of image features approach.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void CompareGoldenTemplate2 ( FilNet.Image inImage, FilNet.GoldenTemplate2Model inModel, float inSensitivityA, float inSensitivityB, FilNet.Region outDefects )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inModel | FilNet.GoldenTemplate2Model | |||
![]() | inSensitivityA | float | <0.0f, INF> | 1.0f | Usually influences small, distinctive defects. Default value: 1.0f. |
![]() | inSensitivityB | float | <0.0f, INF> | 0.95f | Usually influences bigger, extensive defects. Default value: 0.95f. |
![]() | outDefects | FilNet.Region |
Description
This filter compares pixels of the input images against a template created by CreateGoldenTemplate2 and creates a region containing only pixels that are different.
The filter expects the object to be positioned precisely and in the same way as object images used to construct the inModel - see CreateGoldenTemplate2.
Sensitivity of the filter can be adjusted using inSensitivityA and inSensitivityB parameters.