mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-06 07:06:54 +08:00
Added regexrule class
This commit is contained in:
@@ -15,7 +15,8 @@ set(lpr_source_files
|
|||||||
stateidentifier.cpp
|
stateidentifier.cpp
|
||||||
featurematcher.cpp
|
featurematcher.cpp
|
||||||
ocr.cpp
|
ocr.cpp
|
||||||
postprocess.cpp
|
postprocess/postprocess.cpp
|
||||||
|
postprocess/regexrule.cpp
|
||||||
binarize_wolf.cpp
|
binarize_wolf.cpp
|
||||||
segmentation/charactersegmenter.cpp
|
segmentation/charactersegmenter.cpp
|
||||||
segmentation/verticalhistogram.cpp
|
segmentation/verticalhistogram.cpp
|
||||||
|
21
src/openalpr/postprocess/regexrule.cpp
Normal file
21
src/openalpr/postprocess/regexrule.cpp
Normal 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() {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
23
src/openalpr/postprocess/regexrule.h
Normal file
23
src/openalpr/postprocess/regexrule.h
Normal 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 */
|
||||||
|
|
Reference in New Issue
Block a user