You are here: Start » FIL.NET » FIS.LocateMultipleObjects_SAD Method

FIS.LocateMultipleObjects_SAD Method

Finds multiple occurrences of a predefined template on an image by analysing the Square Average Difference between pixel values.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void LocateMultipleObjects_SAD
(
	FilNet.Image inImage,
	FilNet.GrayModel inGrayModel,
	int inMinPyramidLevel,
	bool inIgnoreBoundaryObjects,
	float inMaxDifference,
	float inMinDistance,
	IList<FilNet.Object2D> outObjects
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageImage on which model occurrences will be searched.
inGrayModelFilNet.GrayModelModel which will be sought.
inMinPyramidLevelint<0, 12>0Defines the highest resolution level. Default value: 0.
inIgnoreBoundaryObjectsboolFalseFlag indicating whether objects crossing image boundary should be ignored or not. Default value: False.
inMaxDifferencefloat<0.0f, INF>5.0fMaximum accepted average difference between pixel values. Default value: 5.0f.
inMinDistancefloat<0.0f, INF>10.0fMinimum distance between two matches. Default value: 10.0f.
outObjectsSystem.Collections.Generic.IList<FilNet.Object2D>Found objects.

Function Overrides

See also