10 lines
200 B
C#
10 lines
200 B
C#
|
using OpenCVForUnity.CoreModule;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
public class HeadTurnDown : PoseBase
|
|||
|
{
|
|||
|
public override bool CheckPose(List<Point> points)
|
|||
|
{
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|