From b0b062788eafbb3f6c207cb58f97084586326c6c Mon Sep 17 00:00:00 2001 From: DucDangAnh Date: Mon, 29 Jun 2020 09:25:59 +0700 Subject: [PATCH] LaneIn - Remove Method CaptureAllCamera. --- AIParkingApplication/LaneIn.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/AIParkingApplication/LaneIn.cs b/AIParkingApplication/LaneIn.cs index 9c317d8..668b6eb 100644 --- a/AIParkingApplication/LaneIn.cs +++ b/AIParkingApplication/LaneIn.cs @@ -147,7 +147,6 @@ namespace AIParkingApplication if (isRetryModeUntilOk) //TODO: TestMode { Thread.Sleep(500); - CaptureAllCamera(); } else { @@ -242,10 +241,5 @@ namespace AIParkingApplication Console.WriteLine($"{Util.GetCurrentMethodName()}\texMessage: {ex.Message}"); } } - - private void CaptureAllCamera() - { - overviewCamera.RequestCaptureOneFrame(); - } } }