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());