Looking inside skeleton stream helpers
The SDK provides an ample amount of APIs to interact with the sensors and play around with skeleton data. There are several classes and structures associated with skeleton tracking. SkeletonFrame
and SkeletonStream
are the two classes that actually take care of skeleton data processing. They are the core of skeleton stream data. Unlike color and depth streams, these two classes are not derived from ImageFrame
and ImageStream
because the skeleton data is not an image frame. Let's focus on the individual class members and their uses.
The skeleton frame
The SkeletonFrame
class is a sealed class and contains the individual skeleton information that is tracked by the sensor. This class defines the properties and methods for working with skeleton frames. Like ImageFrame
for color and depth images, SkeletonFrame
represents a single frame from SkeletonStream
. The OpenSkeletonFrame()
method of SkeletonFrameReadyEventArgs
returns the current SkeletonFrame
from...