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