robocup-software icon indicating copy to clipboard operation
robocup-software copied to clipboard

Make configuration parameters for kick evaluator

Open kylestach opened this issue 5 years ago • 0 comments

Here are the constants in question: https://github.com/RoboJackets/robocup-software/blob/73c92878baf960844b5a4b34c72804093f1ea459/soccer/KickEvaluator.cpp#L15-L18

We want them to be declared using the new ROS parameters interface. An example of using the parameters interface: https://github.com/RoboJackets/robocup-software/blob/ros2/soccer/include/rj_vision_filter/params.hpp https://github.com/RoboJackets/robocup-software/blob/ros2/soccer/src/rj_vision_filter/params.cpp

For the following parameter declaration:

DECLARE_NS_INT64(kVisionFilterParamModule, filter::health, init)

You can access it using filter::health::PARAM_min.

kylestach avatar Nov 08 '20 17:11 kylestach