Merge pull request #209 from peters/master

Add missing include.
This commit is contained in:
Matthew Hill
2015-10-07 09:41:37 -04:00
3 changed files with 14 additions and 1 deletions

View File

@@ -384,6 +384,17 @@ namespace openalprnet
} }
} }
property bool MustMatchPattern {
bool get()
{
return this->m_config->mustMatchPattern;
}
void set(bool value)
{
this->m_config->mustMatchPattern = value;
}
}
property String^ OcrLanguage { property String^ OcrLanguage {
String^ get() String^ get()
{ {

View File

@@ -12,7 +12,8 @@ namespace openalprnet
public enum class AlprDetectorTypeNet : int { public enum class AlprDetectorTypeNet : int {
DetectorLbpCpu = alpr::DETECTOR_LBP_CPU, DetectorLbpCpu = alpr::DETECTOR_LBP_CPU,
DetectorLbpGpu = alpr::DETECTOR_LBP_GPU, DetectorLbpGpu = alpr::DETECTOR_LBP_GPU,
DetectorLbpMorphCpu = alpr::DETECTOR_MORPH_CPU DetectorLbpMorphCpu = alpr::DETECTOR_MORPH_CPU,
DetectorLbpOpencl = alpr::DETECTOR_LBP_OPENCL
}; };
} }
} }

View File

@@ -19,6 +19,7 @@
#include <opencv2/core/core.hpp> #include <opencv2/core/core.hpp>
#include <functional> #include <functional>
#include <cctype>
#include "utility.h" #include "utility.h"