Skip to content

Commit

Permalink
Changed viewer default to follow camera, start at camera view, and sh… (
Browse files Browse the repository at this point in the history
#78)

Changed viewer default to follow camera, start at camera view, and show graphs
  • Loading branch information
ethanseq authored Jul 25, 2022
1 parent 7ff9c43 commit 79ba517
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Viewer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,13 @@ void Viewer::Run() {

pangolin::CreatePanel("menu").SetBounds(0.0, 1.0, 0.0,
pangolin::Attach::Pix(175));
pangolin::Var<bool> menuFollowCamera("menu.Follow Camera", false, true);
pangolin::Var<bool> menuCamView("menu.Camera View", false, false);
pangolin::Var<bool> menuFollowCamera("menu.Follow Camera", true, true);
pangolin::Var<bool> menuCamView("menu.Camera View", true, true);
pangolin::Var<bool> menuTopView("menu.Top View", false, false);
// pangolin::Var<bool> menuSideView("menu.Side View",false,false);
pangolin::Var<bool> menuShowPoints("menu.Show Points", true, true);
pangolin::Var<bool> menuShowKeyFrames("menu.Show KeyFrames", true, true);
pangolin::Var<bool> menuShowGraph("menu.Show Graph", false, true);
pangolin::Var<bool> menuShowGraph("menu.Show Graph", true, true);
pangolin::Var<bool> menuShowInertialGraph("menu.Show Inertial Graph", true,
true);
pangolin::Var<bool> menuLocalizationMode("menu.Localization Mode", false,
Expand Down

0 comments on commit 79ba517

Please sign in to comment.