using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using OpenCvSharp; namespace Squirrowse.Client.Service { public class CameraService : ICameraService { public VideoCapture GetCamera() { throw new NotImplementedException(); } public Task GetFrame(VideoCapture video) { throw new NotImplementedException(); } } }