diff --git a/AIParkingApplication/LaneIn.cs b/AIParkingApplication/LaneIn.cs index 71b0f74..72825b6 100644 --- a/AIParkingApplication/LaneIn.cs +++ b/AIParkingApplication/LaneIn.cs @@ -65,7 +65,7 @@ namespace AIParkingApplication if (isRetryMode && !plateProcessor.IsPlateStringValid(finalPlateResult.PlateString)) { - if (isRetryModeUntilOk) + if (isRetryModeUntilOk) //TODO: TestMode { Thread.Sleep(500); CaptureAllCamera(); @@ -74,6 +74,7 @@ namespace AIParkingApplication { Console.WriteLine("PlateCamera_OnOneVideoFrameRequested Retry Mode"); Thread.Sleep(1000); + overviewCamera.RequestCaptureOneFrame(); finalPlateResult = await plateProcessor.ProcessPlate(videoFrame); } }