Click or drag to resize

Index.RadiusSearch 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: OpenCvSharp.Mat
The query point
indices
Type: OpenCvSharp.Mat
Indices of the nearest neighbors found
dists
Type: OpenCvSharp.Mat
Distances to the nearest neighbors found
radius
Type: System.Single
Number of nearest neighbors to search for
maxResults
Type: System.Int32
params
Type: OpenCvSharp.Flann.SearchParams
Search parameters
See Also