mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-07 05:00:54 +08:00
Bugfix: DetectionStrictness is an int, not float.
This commit is contained in:
@@ -378,12 +378,12 @@ namespace openalprnet {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
property float DetectionStrictness {
|
property int DetectionStrictness {
|
||||||
float get()
|
int get()
|
||||||
{
|
{
|
||||||
return this->m_config->detectionStrictness;
|
return this->m_config->detectionStrictness;
|
||||||
}
|
}
|
||||||
void set(float value)
|
void set(int value)
|
||||||
{
|
{
|
||||||
this->m_config->detectionStrictness = value;
|
this->m_config->detectionStrictness = value;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user