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

21 lines
481 B
C#
Raw Normal View History

2023-11-15 08:10:56 +00:00
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();
}
}