C#断点,选择帧kinect v2

时间:2014-10-16 10:42:24

标签: c# frame kinect data-acquisition

我使用的是sdk 2,样本面基本。(C#编程) 我想插入一个断点或仅流动一个预定数量的帧,或者使用一个预定帧作为图像进行分析。 我在哪里以及如何获取代码来执行此操作? 我在采集帧功能,但我不知道如何影响要处理的帧。

using (FaceFrame faceFrame = e.FrameReference.AcquireFrame())
        {
            if (faceFrame != null)
            {
                // get the index of the face source from the face source array
                int index = this.GetFaceSourceIndex(faceFrame.FaceFrameSource);
                // check if this face frame has valid face frame results
                if (this.ValidateFaceBoxAndPoints(faceFrame.FaceFrameResult))
                {
                // store this face frame result to draw later
                // here i can extract the feature of face of all frame   
                    this.faceFrameResults[index] = faceFrame.FaceFrameResult;
            }

我想要提取某个特定帧的特定功能。

感谢您的回复!

1 个答案:

答案 0 :(得分:0)

您可以随时使用System.Diagnostic命名空间给出的Debugger.Break()方法。