From 82113eb90c487d9da7ebd968ff17e74659822daa Mon Sep 17 00:00:00 2001 From: Scott Klum Date: Tue, 16 Jul 2013 19:19:18 -0400 Subject: [PATCH] Removed debug statements --- openbr/plugins/landmarks.cpp | 4 ---- 1 file changed, 0 insertions(+), 4 deletions(-) diff --git a/openbr/plugins/landmarks.cpp b/openbr/plugins/landmarks.cpp index aa8f3e1..b9fed85 100644 --- a/openbr/plugins/landmarks.cpp +++ b/openbr/plugins/landmarks.cpp @@ -112,7 +112,6 @@ class ProcrustesTransform : public Transform if (warp) { Eigen::MatrixXf dstMat = srcMat*R; for (int i = 0; i < dstMat.rows(); i++) { - qDebug() << QPointF(dstMat(i,0),dstMat(i,1)); dst.file.appendPoint(QPointF(dstMat(i,0),dstMat(i,1))); } } @@ -181,7 +180,6 @@ class DelaunayTransform : public UntrainableTransform for (int i = 0; i < points.size(); i++) { if (points[i].x() < 0 || points[i].y() < 0 || points[i].y() >= src.m().rows || points[i].x() >= src.m().cols) { - qDebug() << points[i] << src.m().rows << src.m().cols; dst = src; qWarning("Delauney triangulation failed because points lie on boundary."); return; @@ -297,8 +295,6 @@ class DelaunayTransform : public UntrainableTransform boundingBox.width *= 1-QtUtils::toPoint(widthCrop).y(); boundingBox.height *= 1-QtUtils::toPoint(heightCrop).y(); - qDebug() << boundingBox; - dst.m() = Mat(dst.m(), boundingBox); } } -- libgit2 0.21.4