Click or drag to resize

IndexRadiusSearch Method (Mat, Mat, Mat, Single, Int32, SearchParams)

Performs a radius nearest neighbor search for a given query point.

Namespace:  OpenCvSharp.Flann
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax
public void RadiusSearch(
	Mat queries,
	Mat indices,
	Mat dists,
	float radius,
	int maxResults,
	SearchParams params
)

Parameters

queries
Type: OpenCvSharpMat
The query point
indices
Type: OpenCvSharpMat
Indices of the nearest neighbors found
dists
Type: OpenCvSharpMat
Distances to the nearest neighbors found
radius
Type: SystemSingle
Number of nearest neighbors to search for
maxResults
Type: SystemInt32
params
Type: OpenCvSharp.FlannSearchParams
Search parameters
See Also