Squirrowse/Squirrowse.Client/Service/ICameraService.cs

11 lines
299 B
C#
Raw Normal View History

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