mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-07 11:00:55 +08:00
@@ -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()
|
||||||
{
|
{
|
||||||
|
@@ -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
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -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"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user