long candy ready to test
This commit is contained in:
13
VisionBuilder.UI.Recipes.HawkeyeRecipe/EmptyImageSource.cs
Normal file
13
VisionBuilder.UI.Recipes.HawkeyeRecipe/EmptyImageSource.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using OpenCvSharp;
|
||||
using VisionBuilder.UI.Common.RecipeProcessing;
|
||||
|
||||
namespace VisionBuilder.UI.Recipes.HawkeyeRecipe;
|
||||
|
||||
public class EmptyImageSource: IImageSource
|
||||
{
|
||||
|
||||
public Task<Mat> GetImage(CancellationToken token)
|
||||
{
|
||||
return Task.FromResult(new Mat(480, 640, MatType.CV_8UC3, Scalar.Black));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user