LaneIn, PlateDetector - Remove 2 todos.

This commit is contained in:
DucDangAnh 2020-06-29 15:20:55 +07:00
parent cc92f80a45
commit 20b3ce8360
2 changed files with 0 additions and 2 deletions

View File

@ -157,7 +157,6 @@ namespace AIParkingApplication
{ {
try try
{ {
//TODO: check size before resizing
Cv2.Resize(frame, frame, new OpenCvSharp.Size(1280, 720)); Cv2.Resize(frame, frame, new OpenCvSharp.Size(1280, 720));
FinalPlateResult finalPlateResult = await plateProcessor.ProcessPlate(frame); FinalPlateResult finalPlateResult = await plateProcessor.ProcessPlate(frame);

View File

@ -71,7 +71,6 @@ namespace AIParkingApplication
} }
Console.WriteLine($"GetBiggestPlate - Width: {biggestPlateRect.Width}\tHeight: {biggestPlateRect.Height}"); Console.WriteLine($"GetBiggestPlate - Width: {biggestPlateRect.Width}\tHeight: {biggestPlateRect.Height}");
Rect extendedRect = ExtendPlateRect(biggestPlateRect); Rect extendedRect = ExtendPlateRect(biggestPlateRect);
//TODO: check oversize frame
Mat plateImage; Mat plateImage;
try try
{ {