Add empty lines where it makes sense

This commit is contained in:
Philippe Vaucher
2014-03-24 10:45:14 +01:00
parent 4934cf59d2
commit d24ed44f83
7 changed files with 20 additions and 0 deletions

View File

@@ -26,10 +26,12 @@ Alpr::Alpr(const std::string country, const std::string runtimeDir)
{
impl = new AlprImpl(country, runtimeDir);
}
Alpr::~Alpr()
{
delete impl;
}
std::vector<AlprResult> Alpr::recognize(std::string filepath)
{
cv::Mat img = cv::imread(filepath, CV_LOAD_IMAGE_COLOR);
@@ -53,10 +55,12 @@ void Alpr::setDetectRegion(bool detectRegion)
{
impl->setDetectRegion(detectRegion);
}
void Alpr::setTopN(int topN)
{
impl->setTopN(topN);
}
void Alpr::setDefaultRegion(std::string region)
{
impl->setDefaultRegion(region);
@@ -72,6 +76,7 @@ bool Alpr::isLoaded()
AlprResult::AlprResult()
{
}
AlprResult::~AlprResult()
{
}