Files
HawkeyeVision/VisionBuilder.UI.Common/NullClasses/NoLearning.cs
meelstorm 07002dd875 c# script support
python server support
2025-08-25 17:02:33 +02:00

17 lines
364 B
C#

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