Files
HawkeyeVision/VisionBuilder.UI.Common/NoLearning.cs
2025-07-14 12:03:59 +02:00

17 lines
352 B
C#

using OpenCvSharp;
using VisionBuilder.UI.Common.ViewModel.Interfaces.UI;
namespace VisionBuilder.UI.Common;
public class NoLearning:ILearningTool
{
public bool IsLearningEnabled(string recipeName)
{
return false;
}
public void Learn(string recipeName, Mat image)
{
throw new NotImplementedException();
}
}