Fixed end-to-end benchmark to work with updated internal API

This commit is contained in:
Matt Hill
2015-01-06 07:54:41 -05:00
parent 30ee061e21
commit b0e6e538a8

View File

@@ -52,7 +52,9 @@ void EndToEndTest::runTest(string country, vector<std::string> files)
Rect actualPlateRect(x, y, w, h); Rect actualPlateRect(x, y, w, h);
AlprFullDetails recognitionDetails = alpr.recognizeFullDetails(frame); vector<Rect> rois;
rois.push_back(Rect(0,0,frame.cols,frame.rows));
AlprFullDetails recognitionDetails = alpr.recognizeFullDetails(frame, rois);