long candy ready to test

This commit is contained in:
meelstorm
2025-09-05 11:11:23 +02:00
parent d52c844b5d
commit e5746ef766
39 changed files with 904 additions and 168 deletions

View 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));
}
}