RGBDICPOdometryNode.cpp
Go to the documentation of this file.
1 /*
2 Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of the Universite de Sherbrooke nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
20 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27 
28 #include "ros/ros.h"
29 #include "nodelet/loader.h"
32 
33 int main(int argc, char **argv)
34 {
37  ros::init(argc, argv, "rgbdicp_odometry");
38 
39  // process "--params" argument
40  nodelet::V_string nargv;
41  for(int i=1;i<argc;++i)
42  {
43  if(strcmp(argv[i], "--params") == 0)
44  {
46  for(rtabmap::ParametersMap::iterator iter=parametersOdom.begin(); iter!=parametersOdom.end(); ++iter)
47  {
48  std::string str = "Param: " + iter->first + " = \"" + iter->second + "\"";
49  std::cout <<
50  str <<
51  std::setw(60 - str.size()) <<
52  " [" <<
53  rtabmap::Parameters::getDescription(iter->first).c_str() <<
54  "]" <<
55  std::endl;
56  }
57  ROS_WARN("Node will now exit after showing default odometry parameters because "
58  "argument \"--params\" is detected!");
59  exit(0);
60  }
61  else if(strcmp(argv[i], "--udebug") == 0)
62  {
64  }
65  else if(strcmp(argv[i], "--uinfo") == 0)
66  {
68  }
69  nargv.push_back(argv[i]);
70  }
71 
74  std::string nodelet_name = ros::this_node::getName();
75  nodelet.load(nodelet_name, "rtabmap_ros/rgbdicp_odometry", remap, nargv);
76  ros::spin();
77  return 0;
78 }
static std::string getDescription(const std::string &paramKey)
bool load(const std::string &name, const std::string &type, const M_string &remappings, const V_string &my_argv)
ROSCPP_DECL void init(int &argc, char **argv, const std::string &name, uint32_t options=0)
std::map< std::string, std::string > ParametersMap
ROSCPP_DECL const std::string & getName()
static ParametersMap getDefaultOdometryParameters(bool stereo=false, bool vis=true, bool icp=false)
static void setLevel(ULogger::Level level)
#define ROS_WARN(...)
ROSCPP_DECL void spin(Spinner &spinner)
ROSCPP_DECL const M_string & getRemappings()
ROSCPP_DECL std::string remap(const std::string &name)
int main(int argc, char **argv)
static void setType(Type type, const std::string &fileName=kDefaultLogFileName, bool append=true)
std::vector< std::string > V_string
std::map< std::string, std::string > M_string


rtabmap_ros
Author(s): Mathieu Labbe
autogenerated on Mon Dec 14 2020 03:42:19