You are here: Start » FIL.NET » Function Reference » Computer Vision » Template Matching » FIL.EnhanceSingleObjectMatch

FIL.EnhanceSingleObjectMatch

Improves accuracy of single object matching by adding a subpixel-precise adjustment.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void EnhanceSingleObjectMatch
(
	FilNet.Image inImage,
	FilNet.Object2D inObject,
	IList<FilNet.Path> inObjectEdges,
	bool inAllowScale,
	out FilNet.Object2D outObject,
	IList<FilNet.Path> outObjectEdges
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inObjectFilNet.Object2DInput object.
inObjectEdgesSystem.Collections.Generic.IList<FilNet.Path>Input object edges.
inAllowScaleboolDetermines if the object scale can be adjusted.
outObjectFilNet.Object2DObject with enhanced accuracy.
outObjectEdgesSystem.Collections.Generic.IList<FilNet.Path>Edges of the object with enhanced accuracy.

Hardware Acceleration

This operation is optimized for SSSE3 technology for pixels of type: UINT8.

This operation is optimized for AVX2 technology for pixels of type: UINT8.

This operation is optimized for NEON technology for pixels of type: UINT8.

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

See also