CorrelationSearchAll Method (Image, Image, Double, Double, Int32)

CVB.Net Documentation
Find all correlation matches of the template in the image. If the number of results exceeds 32767, then the result list will be truncated at that number. The order of the results is left/top to right/bottom.

Namespace:  Stemmer.Cvb.Minos
Assembly:  Stemmer.Cvb.Minos (in Stemmer.Cvb.Minos.dll) Version: 14.0.0.0
Syntax

public static SearchResult[] SearchAll(
	Image image,
	Image template,
	double density,
	double threshold,
	int radius
)

Parameters

image
Type: Stemmer.CvbImage
image in which to look for correlation matches
template
Type: Stemmer.CvbImage
template with which to look for correlation matches
density
Type: SystemDouble
scan density with which to look for correlation matches
threshold
Type: SystemDouble
minimum correlation for the results to be reported
radius
Type: SystemInt32
minimum distance between two positive results

Return Value

Type: SearchResult
the list of extracted results
Exceptions

ExceptionCondition
ArgumentNullExceptionIf image or template are null
ObjectDisposedExceptionIf image or template has already been disposed
ArgumentOutOfRangeExceptionIf the parameter density or threshold exceeds the range [0...1].
See Also

Reference