RoI detection fixed : parses the command line response, returns Event.RoiDetectionPassed or Event.RoiDetectionFailed.

This commit is contained in:
Milan Hanajik
2017-01-13 19:12:28 +01:00
parent 08acc5778a
commit 8e058cebbb
4 changed files with 55 additions and 15 deletions
@@ -117,7 +117,7 @@ namespace TBF.BenchControl.TestMethods.CameraRoiDetection
Bridge.OnActivity(this, Strings.Camera_error);
goto stopTest;
}
else if (e.Contains(Event.DetectionFailed))
else if (e.Contains(Event.RoiDetectionFailed))
{
retVal = Event.Error;
Bridge.OnActivity(this, Strings.Detection_failed);