recipe name filter
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user