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 voloResultBox, out List points) { throw new NotImplementedException(); } public override void DisposeModel() { throw new NotImplementedException(); } }