From 32a3a330ab86bdabdda6ed3013ca3bbb7b335160 Mon Sep 17 00:00:00 2001 From: Peter Rekdal Sunde Date: Thu, 9 Jul 2015 22:31:37 +0200 Subject: [PATCH] Bugfix: DetectionStrictness is an int, not float. --- src/bindings/csharp/openalpr-net/openalpr-net.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bindings/csharp/openalpr-net/openalpr-net.cpp b/src/bindings/csharp/openalpr-net/openalpr-net.cpp index eafc926..9c0c844 100644 --- a/src/bindings/csharp/openalpr-net/openalpr-net.cpp +++ b/src/bindings/csharp/openalpr-net/openalpr-net.cpp @@ -378,12 +378,12 @@ namespace openalprnet { } } - property float DetectionStrictness { - float get() + property int DetectionStrictness { + int get() { return this->m_config->detectionStrictness; } - void set(float value) + void set(int value) { this->m_config->detectionStrictness = value; }