From 20b3ce8360216c6e4693380c69ccc0803ac2b84b Mon Sep 17 00:00:00 2001 From: DucDangAnh Date: Mon, 29 Jun 2020 15:20:55 +0700 Subject: [PATCH] LaneIn, PlateDetector - Remove 2 todos. --- AIParkingApplication/LaneIn.cs | 1 - AIParkingApplication/PlateDetector.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/AIParkingApplication/LaneIn.cs b/AIParkingApplication/LaneIn.cs index ea61146..bbed15d 100644 --- a/AIParkingApplication/LaneIn.cs +++ b/AIParkingApplication/LaneIn.cs @@ -157,7 +157,6 @@ namespace AIParkingApplication { try { - //TODO: check size before resizing Cv2.Resize(frame, frame, new OpenCvSharp.Size(1280, 720)); FinalPlateResult finalPlateResult = await plateProcessor.ProcessPlate(frame); diff --git a/AIParkingApplication/PlateDetector.cs b/AIParkingApplication/PlateDetector.cs index b252080..acdcc61 100644 --- a/AIParkingApplication/PlateDetector.cs +++ b/AIParkingApplication/PlateDetector.cs @@ -71,7 +71,6 @@ namespace AIParkingApplication } Console.WriteLine($"GetBiggestPlate - Width: {biggestPlateRect.Width}\tHeight: {biggestPlateRect.Height}"); Rect extendedRect = ExtendPlateRect(biggestPlateRect); - //TODO: check oversize frame Mat plateImage; try {