using System.Threading.Tasks; using OpenCvSharp; namespace Squirrowse.Client.Service { public interface ICameraService { VideoCapture GetCamera(int height = 480, int widght = 640, double fps = 15f, bool disposable = false); Task GetFrame(VideoCapture video); } }