Main Page
Namespaces
Classes
Files
File List
File Members
src
depthcloud_node.cpp
Go to the documentation of this file.
1
/*********************************************************************
2
*
3
* Copyright (c) 2014, Willow Garage, Inc.
4
* All rights reserved.
5
*
6
* Redistribution and use in source and binary forms, with or without
7
* modification, are permitted provided that the following conditions
8
* are met:
9
*
10
* * Redistributions of source code must retain the above copyright
11
* notice, this list of conditions and the following disclaimer.
12
* * Redistributions in binary form must reproduce the above
13
* copyright notice, this list of conditions and the following
14
* disclaimer in the documentation and/or other materials provided
15
* with the distribution.
16
* * Neither the name of the Willow Garage nor the names of its
17
* contributors may be used to endorse or promote products derived
18
* from this software without specific prior written permission.
19
*
20
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
* POSSIBILITY OF SUCH DAMAGE.
32
33
* Author: Julius Kammerl (jkammerl@willowgarage.com)
34
*
35
*/
36
37
#include "
depthcloud_encoder/depthcloud_encoder.h
"
38
39
int
main
(
int
argc,
char
**argv){
40
ros::init
(argc, argv,
"head_controller_node"
);
41
ros::NodeHandle
nh;
42
ros::NodeHandle
pnh(
"~"
);
43
44
depthcloud::DepthCloudEncoder
depth_enc(nh, pnh);
45
46
dynamic_reconfigure::Server<depthcloud_encoder::paramsConfig> server;
47
server.setCallback(boost::bind(&
depthcloud::DepthCloudEncoder::dynReconfCb
, &depth_enc, _1, _2));
48
49
ros::AsyncSpinner
spinner
(2);
50
51
spinner.
start
();
52
ros::waitForShutdown
();
53
54
return
0;
55
}
ros::NodeHandle
depthcloud_encoder.h
main
int main(int argc, char **argv)
Definition:
depthcloud_node.cpp:39
ros::init
ROSCPP_DECL void init(int &argc, char **argv, const std::string &name, uint32_t options=0)
depthcloud::DepthCloudEncoder
Definition:
depthcloud_encoder.h:67
spinner
void spinner()
ros::AsyncSpinner::start
void start()
depthcloud::DepthCloudEncoder::dynReconfCb
void dynReconfCb(depthcloud_encoder::paramsConfig &config, uint32_t level)
Definition:
depthcloud_encoder.cpp:149
ros::waitForShutdown
ROSCPP_DECL void waitForShutdown()
ros::AsyncSpinner
depthcloud_encoder
Author(s): Julius Kammer
autogenerated on Mon Jun 10 2019 13:06:12