From 599461fbdf6a991bb6bdadb44e2b3bce0bea29e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20B=C3=BCrki?= Date: Wed, 19 Aug 2020 11:06:53 +0200 Subject: [PATCH 1/2] Fix what was somehow just half-fixed --- src/ofApp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ofApp.h b/src/ofApp.h index 06c5624..18c0001 100644 --- a/src/ofApp.h +++ b/src/ofApp.h @@ -134,7 +134,7 @@ public: void drawPreview(); #ifdef BLOB - bool bPreviewPointCloud = false; + bool bDisplayBlobTrackerVision = false; void drawCapturePointCloud(bool mask); #endif -- GitLab From 6f46219358fedbe8fed67f33f223dbf6d84b71c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20B=C3=BCrki?= Date: Wed, 19 Aug 2020 11:10:02 +0200 Subject: [PATCH 2/2] Remove blob-specific debug from skeleton version --- src/ofApp.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ofApp.cpp b/src/ofApp.cpp index afe7bb2..6be18e9 100644 --- a/src/ofApp.cpp +++ b/src/ofApp.cpp @@ -476,11 +476,13 @@ void ofApp::keyPressed(int key){ switch (key) { case ' ': break; - + +#ifdef BLOB case 'p': bDisplayBlobTrackerVision = !bDisplayBlobTrackerVision; break; - +#endif + case 'v': bShowVisuals = !bShowVisuals; break; -- GitLab