recipe name filter

This commit is contained in:
meelstorm
2025-07-28 09:52:29 +02:00
parent 71d59df0cd
commit f80b275ad8
58 changed files with 4066 additions and 79 deletions

View File

@@ -436,6 +436,11 @@ public class VisionBuilderStatisticsTests
// Test implementation of IRecognitionControl using reflection approach
public class TestRecognitionControl : IRecognitionControl
{
public void Resume()
{
}
public event Action<ImageProcessedEvent> ImageProcessed = delegate { };
public event Action<SessionStartedEvent> SessionStarted = delegate { };
public event Action<SessionEndedEvent> SessionEnded = delegate { };
@@ -444,6 +449,10 @@ public class TestRecognitionControl : IRecognitionControl
public void SetRecipe(RecipeData recipe) { }
public void Start() { }
public void Stop() { }
public void Pause()
{
}
public void TriggerImageProcessed(ImageProcessedEvent eventArgs) => ImageProcessed(eventArgs);
public void TriggerSessionStarted(SessionStartedEvent eventArgs) => SessionStarted(eventArgs);