Back to Adaptive Vision Library website

You are here: Start » Function Reference » Image Analysis » CompareGoldenTemplate2

CompareGoldenTemplate2


Header:AVL.h
Namespace:avl

Compares an image with a template image considered to have no defects.

Syntax

C++
C#
 
void avl::CompareGoldenTemplate2
(
	const avl::GoldenTemplate2Model& inModel,
	const avl::Image& inImage,
	float inSensitivityA,
	float inSensitivityB,
	avl::Region& outDefects
)

Parameters

Name Type Range Default Description
inModel const GoldenTemplate2Model&
inImage const Image& Input image
inSensitivityA float 0.0 - 1.0f Usually influences small, distinctive defects.
inSensitivityB float 0.0 - 0.95f Usually influences bigger, extensive defects.
outDefects 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.

See Also