17 lines
463 B
C#
17 lines
463 B
C#
using VisionBuilder.UI.Common.Commands;
|
|
using VisionBuilder.UI.Common.ViewModel.Classes;
|
|
|
|
namespace VisionBuilder.UI.Common.RecipeProcessing;
|
|
|
|
public interface IRecognitionControl
|
|
{
|
|
|
|
List<RecipeData> GetRecipesData();
|
|
void SetRecipe(RecipeData recipe);
|
|
void Start();
|
|
void Stop();
|
|
event Action<ImageProcessedEvent> ImageProcessed;
|
|
event Action<SessionStartedEvent> SessionStarted;
|
|
event Action<SessionEndedEvent> SessionEnded;
|
|
|
|
} |