Squirrowse/Squirrowse.Client/Service/ICameraService.cs

15 lines
381 B
C#
Raw Normal View History

2019-11-01 19:04:24 +01:00
using OpenCvSharp;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Squirrowse.Client.Service
{
public interface ICameraService
{
2019-11-02 21:06:44 +01:00
public VideoCapture GetCamera(int height = 480, int widght = 640, double fps = 15f, bool disposable = false);
2019-11-01 19:04:24 +01:00
public Task<Mat> GetFrame(VideoCapture video);
}
}