Commit c4484f899ca169c3836a922123b9f505037f4ed7

Authored by Josh Klontz
1 parent 2d2e187e

removed spurious debug statements

Showing 1 changed file with 0 additions and 5 deletions
openbr/core/bee.cpp
... ... @@ -107,8 +107,6 @@ void BEE::writeSigset(const QString &sigset, const br::FileList &files, bool ign
107 107 template <typename T>
108 108 Mat readMatrix(const br::File &matrix, QString *targetSigset = NULL, QString *querySigset = NULL)
109 109 {
110   - qDebug() << matrix;
111   -
112 110 // Special case matrix construction
113 111 if (matrix == "Identity") {
114 112 int rows = matrix.get<int>("rows", -1);
... ... @@ -163,9 +161,6 @@ Mat readMatrix(const br::File &amp;matrix, QString *targetSigset = NULL, QString *qu
163 161 int rows = words[1].toInt();
164 162 int cols = words[2].toInt();
165 163  
166   - qDebug() << rows;
167   - qDebug() << cols;
168   -
169 164 // Get matrix data
170 165 qint64 bytesExpected = (qint64)rows*(qint64)cols*(qint64)sizeof(T);
171 166 Mat m(rows, cols, OpenCVType<T,1>::make());
... ...