using OpenCvSharp; namespace VisionBuilder.UI.Common.RecipeProcessing; public interface IImageSource { string GetName(); Task GetImage(CancellationToken token); }