Get the points within the specific sphere

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public MCvPoint3D32f[] GetPointsWithinSphere(
	MCvPoint3D32f center,
	float radius
)
Visual Basic (Declaration)
Public Function GetPointsWithinSphere ( _
	center As MCvPoint3D32f, _
	radius As Single _
) As MCvPoint3D32f()
Visual C++
public:
array<MCvPoint3D32f>^ GetPointsWithinSphere(
	MCvPoint3D32f center, 
	float radius
)

Parameters

center
Type: Emgu.CV.Structure..::.MCvPoint3D32f
The center of the sphere
radius
Type: System..::.Single
The radius of the sphere

Return Value

The points withing the specific sphere

See Also