KinectCaptureGetColorPoints Method |
http://www.emgu.com
Get an enumerator of the colored points from Kinect. This function can only be called after the Grab() function.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic ColorPoint[] GetColorPoints(
Image<Gray, byte> mask
)
Public Function GetColorPoints (
mask As Image(Of Gray, Byte)
) As ColorPoint()
public:
array<ColorPoint>^ GetColorPoints(
Image<Gray, unsigned char>^ mask
)
member GetColorPoints :
mask : Image<Gray, byte> -> ColorPoint[]
Parameters
- mask
- Type: Emgu.CVImageGray, Byte
The mask that controls which points should be returned. You can use the result from RetrieveValidDepthMap() function. Use null if you want all points to be returned
Return Value
Type:
ColorPointAn enumerator of the colored points from Kinect
See Also