kitti_player.cfg 1.2 KB

1234567891011121314151617181920212223
  1. #!/usr/bin/env python
  2. PACKAGE = "kitti_player"
  3. from dynamic_reconfigure.parameter_generator_catkin import *
  4. gen = ParameterGenerator()
  5. gen.add("loop_rate", double_t, 0, "Publish frequency", 1, 0, 10)
  6. gen.add("start", bool_t, 0, "Select to start playback", True)
  7. gen.add("continuous", bool_t, 0, "Select to play every frame at loop rate", False)
  8. gen.add("publish", bool_t, 0, "Publish a single frame", False)
  9. gen.add("generateGroundtruth", bool_t, 0, "If true the groundtruth is published", True)
  10. gen.add("generateUncertain", bool_t, 0, "If true the uncertain pose is published", True)
  11. gen.add("alphaPose", double_t, 0, "standard deviation of the pose", 0,0,1)
  12. gen.add("alphaOrientation", double_t, 0, "standard deviaton of the orientation", 0,0,1)
  13. #deprecated section
  14. gen.add("sequence", int_t, 0, "Sequence to load", 1, 0, 21)
  15. gen.add("exitIfNotFound", bool_t, 0, "If true it exits if no file is found", False)
  16. exit(gen.generate(PACKAGE, "kitti_player", "kitti_player"))