From 37276ffabdaf784ecac4bca3734fc5a385940523 Mon Sep 17 00:00:00 2001 From: DepthDeluxe Date: Sun, 10 Apr 2016 15:16:50 -0400 Subject: [PATCH] reverted accidental inclusion of debugging code --- openbr/plugins/distance/dist.cpp | 12 ------------ 1 file changed, 0 insertions(+), 12 deletions(-) diff --git a/openbr/plugins/distance/dist.cpp b/openbr/plugins/distance/dist.cpp index 2f6ace8..427dbd9 100644 --- a/openbr/plugins/distance/dist.cpp +++ b/openbr/plugins/distance/dist.cpp @@ -14,9 +14,6 @@ * limitations under the License. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -#include -using namespace std; - #include #include @@ -55,15 +52,6 @@ private: float compare(const Mat &a, const Mat &b) const { - /* - cout << "Mat A" << endl; - cout << "rows: " << a.rows << "\tcols: " << a.cols << endl; - cout << "a.ptr()[0]: " << a.ptr()[0] << endl; - cout << "Mat B" << endl; - cout << "rows: " << b.rows << "\tcols: " << b.cols << endl; - cout << "b.ptr()[0]: " << b.ptr()[0] << endl; - */ - if ((a.size != b.size) || (a.type() != b.type())) return -std::numeric_limits::max(); -- libgit2 0.21.4