From a8efb5d5f31028e831df99e5d4c6426b6e2f95f7 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Sat, 6 Dec 2014 17:30:00 -0500 Subject: [PATCH] Updated detector private functions to use offset --- src/openalpr/detection/detectorcpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openalpr/detection/detectorcpu.h b/src/openalpr/detection/detectorcpu.h index e1cfecb..540d55a 100644 --- a/src/openalpr/detection/detectorcpu.h +++ b/src/openalpr/detection/detectorcpu.h @@ -45,7 +45,7 @@ namespace alpr cv::CascadeClassifier plate_cascade; - std::vector doCascade(cv::Mat frame, std::vector regionsOfInterest); + std::vector doCascade(cv::Mat frame, int offset_x, int offset_y); }; }