From 998cd4775d7318556cb205f20bd66da1679639c6 Mon Sep 17 00:00:00 2001 From: Peter Rekdal Sunde Date: Wed, 8 Jul 2015 13:14:18 +0200 Subject: [PATCH] Damn you CRLF. --- src/bindings/csharp/openalpr-net/openalpr-net.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bindings/csharp/openalpr-net/openalpr-net.cpp b/src/bindings/csharp/openalpr-net/openalpr-net.cpp index 9325579..7f31828 100644 --- a/src/bindings/csharp/openalpr-net/openalpr-net.cpp +++ b/src/bindings/csharp/openalpr-net/openalpr-net.cpp @@ -1269,6 +1269,9 @@ namespace openalprnet { cv::Mat frame = cv::imread( marshal_as(filepath) ); std::vector rois = AlprHelper::ToVector(regionsOfInterest); AlprResults results = m_Impl->recognize(frame.data, frame.elemSize(), frame.cols, frame.rows, rois ); + return gcnew AlprResultsNet(results); + } + /// /// Recognize from a bitmap ///