Added regexrule class

This commit is contained in:
Matt Hill
2015-04-28 20:35:57 -04:00
parent 200d10347c
commit dafab6c192
3 changed files with 46 additions and 1 deletions

View File

@@ -15,7 +15,8 @@ set(lpr_source_files
stateidentifier.cpp
featurematcher.cpp
ocr.cpp
postprocess.cpp
postprocess/postprocess.cpp
postprocess/regexrule.cpp
binarize_wolf.cpp
segmentation/charactersegmenter.cpp
segmentation/verticalhistogram.cpp

View File

@@ -0,0 +1,21 @@
/*
* File: regexrule.cpp
* Author: mhill
*
* Created on April 28, 2015, 6:28 AM
*/
#include "regexrule.h"
namespace alpr
{
RegexRule::RegexRule() {
}
RegexRule::~RegexRule() {
}
}

View File

@@ -0,0 +1,23 @@
/*
* File: regexrule.h
* Author: mhill
*
* Created on April 28, 2015, 6:28 AM
*/
#ifndef OPENALPR_REGEXRULE_H
#define OPENALPR_REGEXRULE_H
namespace alpr
{
class RegexRule {
public:
RegexRule();
virtual ~RegexRule();
private:
};
}
#endif /* OPENALPR_REGEXRULE_H */