Index3DRadiusSearch Method |
http://www.emgu.com
Perform a search within the given radius
Namespace:
Emgu.CV.Flann
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic Index3DNeighbor[] RadiusSearch(
MCvPoint3D32f position,
double radius,
int maxResults
)
Public Function RadiusSearch (
position As MCvPoint3D32f,
radius As Double,
maxResults As Integer
) As Index3DNeighbor()
public:
array<Index3DNeighbor>^ RadiusSearch(
MCvPoint3D32f position,
double radius,
int maxResults
)
member RadiusSearch :
position : MCvPoint3D32f *
radius : float *
maxResults : int -> Index3DNeighbor[]
Parameters
- position
- Type: Emgu.CV.StructureMCvPoint3D32f
The center of the search area - radius
- Type: SystemDouble
The radius of the search - maxResults
- Type: SystemInt32
The maximum number of results to return
Return Value
Type:
Index3DNeighborThe neighbors found
See Also