我使用的是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;
}
我想要提取某个特定帧的特定功能。
感谢您的回复!