| Index3DApproximateNearestNeighbour Method |
http://www.emgu.com
Find the approximate nearest position in 3D
Namespace: Emgu.CV.FlannAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic int ApproximateNearestNeighbour(
MCvPoint3D32f position,
out double squareDist
)
Public Function ApproximateNearestNeighbour (
position As MCvPoint3D32f,
<OutAttribute> ByRef squareDist As Double
) As Integer
public:
int ApproximateNearestNeighbour(
MCvPoint3D32f position,
[OutAttribute] double% squareDist
)
member ApproximateNearestNeighbour :
position : MCvPoint3D32f *
squareDist : float byref -> int
Parameters
- position
- Type: Emgu.CV.StructureMCvPoint3D32f
The position to start the search from - squareDist
- Type: SystemDouble
The square distance of the nearest neighbour
Return Value
Type:
Int32The index with the nearest 3D position
See Also