Simplify verbose return

This commit is contained in:
Philippe Vaucher
2014-03-24 10:32:16 +01:00
parent 564e0d3087
commit 4934cf59d2

View File

@@ -234,7 +234,5 @@ bool detectandshow( Alpr* alpr, cv::Mat frame, std::string region, bool writeJso
if (measureProcessingTime)
std::cout << "Total Time to process image: " << diffclock(startTime, endTime) << "ms." << std::endl;
if (results.size() > 0)
return true;
return false;
return results.size() > 0;
}