Get the points within the specific sphere

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

Syntax

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

Parameters

center
MCvPoint3D32f
The center of the sphere
radius
Single
The radius of the sphere

Return Value

The points withing the specific sphere

See Also