Click or drag to resize
Accord.NET (logo)

CorrelationMatching. Match Method (Bitmap, Bitmap, IEnumerable< IntPoint> , IEnumerable< IntPoint> )

Note: This API is now obsolete.

Matches two sets of feature points computed from the given images.

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please use Match(points1, points2) instead.")]
public IntPoint[][] Match(
	Bitmap image1,
	Bitmap image2,
	IEnumerable<IntPoint> points1,
	IEnumerable<IntPoint> points2
)
Request Example View Source

Parameters

image1
Type: System.Drawing.Bitmap
image2
Type: System.Drawing.Bitmap
points1
Type: System.Collections.Generic.IEnumerable<IntPoint>
points2
Type: System.Collections.Generic.IEnumerable<IntPoint>

Return Value

Type:IntPoint[][]
See Also