ROS param()

2019. 10. 7. 15:16드론

[출처] http://wiki.ros.org/roscpp_tutorials/Tutorials/Parameters

 

roscpp_tutorials/Tutorials/Parameters - ROS Wiki

Please ask about problems and questions regarding this tutorial on answers.ros.org. Don't forget to include in your question the link to this page, the versions of your OS & ROS, and also add appropriate tags. Using Parameters in roscpp Description: This t

wiki.ros.org

 

getParam의 형태는 다음과 같다. key라는 파라미터에서 값을 읽어와 output_value에 저장한다

 bool getParam (const std::string& key, parameter_type& output_value) const 

 

param은 getParam과 유사한데, 만일 파라미터 값이 검색되지 않는다면 3번째 인자의 default 값으로 output value를 정의해버린다. 그리고 주의할 점은 가끔 컴파일러가 default value를 string type으로 요구한다는 점이다

std::string s;
n.param("my_param", s, "default_value"); 

 

 

'드론' 카테고리의 다른 글

git push 계정 로그인 생략  (0) 2019.10.09
git clone --recursive 옵션의 의미  (0) 2019.10.09
Github 코드 리뷰  (0) 2019.10.04
Github 이슈 트래커 작성  (0) 2019.10.04
git commit --amend  (0) 2019.10.04