You are here: Start » AVL.NET » AVS.LocateMultipleObjects_NCC Method

AVS.LocateMultipleObjects_NCC Method

Finds all occurrences of a predefined template on an image by analysing the normalized correlation between pixel values.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void LocateMultipleObjects_NCC
(
	AvlNet.Image inImage,
	AvlNet.GrayModel inGrayModel,
	int inMinPyramidLevel,
	bool inIgnoreBoundaryObjects,
	float inMinScore,
	float inMinDistance,
	IList<AvlNet.Object2D> outObjects
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageImage on which model occurrences will be searched.
inGrayModelAvlNet.GrayModelModel of objects to be searched.
inMinPyramidLevelint<0, 12>0Defines the lowest pyramid level at which object position is still refined. Default value: 0.
inIgnoreBoundaryObjectsboolFalseFlag indicating whether objects crossing image boundary should be ignored or not. Default value: False.
inMinScorefloat<-1.0f, 1.0f>0.7fMinimum score of object candidates accepted at each pyramid level. Default value: 0.7f.
inMinDistancefloat<0.0f, INF>10.0fMinimum distance between two found objects. Default value: 10.0f.
outObjectsSystem.Collections.Generic.IList<AvlNet.Object2D>Found objects.

Function Overrides

See also