c# script support
python server support
This commit is contained in:
17
VisionBuilder.UI.Common/NullClasses/NoLearning.cs
Normal file
17
VisionBuilder.UI.Common/NullClasses/NoLearning.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user