ArtofKinect.Common.PointCloudStreamRecorder.AddFrame C# (CSharp) Method

AddFrame() public method

public AddFrame ( MotionFrame frame ) : void
frame MotionFrame
return void
        public void AddFrame(MotionFrame frame)
        {
            if (_isRecording)
            {
                _frameQueue.AddWork(frame);
            }
        }