8 lines
158 B
C#
8 lines
158 B
C#
using OpenCvSharp;
|
|
|
|
namespace VisionBuilder.UI.Common.RecipeProcessing;
|
|
|
|
public interface IImageSource
|
|
{
|
|
Task<Mat> GetImage(CancellationToken token);
|
|
} |