15 lines
304 B
C#
15 lines
304 B
C#
|
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();
|
|||
|
public Task<Mat> GetFrame(VideoCapture video);
|
|||
|
}
|
|||
|
}
|