Commit b80e8c3c authored by Pierre Bürki's avatar Pierre Bürki
Browse files

Turn bounding box panel invisible

parent 6b155d40
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -52,6 +52,9 @@ void BlobFinder::initGUI(ofxGui &gui){
    blobGuiGroup->add(eyeInset.set("EyeInset", .8, 0, 1));
    
	panel->loadFromFile("trackings.xml");

	bool visible = false;
	panel->setVisible(visible);
}

void BlobFinder::allocate(int &value){
+3 −0
Original line number Diff line number Diff line
@@ -31,6 +31,9 @@ void SkeletonFinder::initGUI(ofxGui& gui) {
	sensorBoxGuiGroup->add<ofxGuiIntInputField>(sensorBoxBottom.set("bottom", 1000));

	panel->loadFromFile("trackings.xml");

	bool visible = false;
	panel->setVisible(visible);
}

void SkeletonFinder::setTransformMatrix(ofMatrix4x4* mat) {