From dafab6c1927b9f77fc41896e3cf10fa22f8f59d2 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Tue, 28 Apr 2015 20:35:57 -0400 Subject: [PATCH] Added regexrule class --- src/openalpr/CMakeLists.txt | 3 ++- src/openalpr/postprocess/regexrule.cpp | 21 +++++++++++++++++++++ src/openalpr/postprocess/regexrule.h | 23 +++++++++++++++++++++++ 3 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 src/openalpr/postprocess/regexrule.cpp create mode 100644 src/openalpr/postprocess/regexrule.h diff --git a/src/openalpr/CMakeLists.txt b/src/openalpr/CMakeLists.txt index 1c6630c..2d95095 100644 --- a/src/openalpr/CMakeLists.txt +++ b/src/openalpr/CMakeLists.txt @@ -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 diff --git a/src/openalpr/postprocess/regexrule.cpp b/src/openalpr/postprocess/regexrule.cpp new file mode 100644 index 0000000..06ea6c3 --- /dev/null +++ b/src/openalpr/postprocess/regexrule.cpp @@ -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() { + } + +} + diff --git a/src/openalpr/postprocess/regexrule.h b/src/openalpr/postprocess/regexrule.h new file mode 100644 index 0000000..4afcb30 --- /dev/null +++ b/src/openalpr/postprocess/regexrule.h @@ -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 */ +