From c4484f899ca169c3836a922123b9f505037f4ed7 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Wed, 22 May 2013 12:30:48 -0400 Subject: [PATCH] removed spurious debug statements --- openbr/core/bee.cpp | 5 ----- 1 file changed, 0 insertions(+), 5 deletions(-) diff --git a/openbr/core/bee.cpp b/openbr/core/bee.cpp index 1792fbd..a513b74 100644 --- a/openbr/core/bee.cpp +++ b/openbr/core/bee.cpp @@ -107,8 +107,6 @@ void BEE::writeSigset(const QString &sigset, const br::FileList &files, bool ign template Mat readMatrix(const br::File &matrix, QString *targetSigset = NULL, QString *querySigset = NULL) { - qDebug() << matrix; - // Special case matrix construction if (matrix == "Identity") { int rows = matrix.get("rows", -1); @@ -163,9 +161,6 @@ Mat readMatrix(const br::File &matrix, QString *targetSigset = NULL, QString *qu int rows = words[1].toInt(); int cols = words[2].toInt(); - qDebug() << rows; - qDebug() << cols; - // Get matrix data qint64 bytesExpected = (qint64)rows*(qint64)cols*(qint64)sizeof(T); Mat m(rows, cols, OpenCVType::make()); -- libgit2 0.21.4