Health/Assets/Scripts/PoseCheck/EstimateModel/MediaPipeEstimator.cs

21 lines
481 B
C#

using OpenCVForUnity.CoreModule;
using System;
using System.Collections.Generic;
public class MediaPipeEstimator : Estimator
{
public override void InitModel()
{
throw new NotImplementedException();
}
public override bool Esitmate(Mat bgrMat, List<float[]> voloResultBox, out List<Point> points)
{
throw new NotImplementedException();
}
public override void DisposeModel()
{
throw new NotImplementedException();
}
}