9 lines
224 B
C#
9 lines
224 B
C#
using OpenCvSharp;
|
|
|
|
namespace VisionBuilder.UI.Common.ViewModel.Interfaces.UI;
|
|
|
|
public interface ILearningTool
|
|
{
|
|
public bool IsLearningEnabled(string recipeName);
|
|
public void Learn(string recipeName, Mat image);
|
|
} |