12 lines
265 B
C#
12 lines
265 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using OpenCvSharp;
|
|
|
|
namespace Squirrowse.Client.Service
|
|
{
|
|
public interface ICameraService
|
|
{
|
|
Task<Mat> GetFrame();
|
|
IAsyncEnumerable<byte[]> GetFramesAsyncEnumerator();
|
|
}
|
|
} |