Skip to content

Commit aa3a144

Browse files
noetic-devel (#46)
noetic-devel
2 parents 4a61213 + ee672ab commit aa3a144

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

ed_sensor_integration/src/kinect/kinect_plugin.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ KinectPlugin::~KinectPlugin()
4343

4444
void KinectPlugin::initialize(ed::InitData& init)
4545
{
46-
tue::Configuration& config = init.config;
46+
tue::Configuration& config = init.config;
4747

4848
std::string topic;
4949
if (config.value("topic", topic))
@@ -69,7 +69,7 @@ void KinectPlugin::initialize(ed::InitData& init)
6969

7070
void KinectPlugin::process(const ed::PluginInput& data, ed::UpdateRequest& req)
7171
{
72-
const ed::WorldModel& world = data.world;
72+
const ed::WorldModel& world = data.world;
7373

7474
// - - - - - - - - - - - - - - - - - -
7575
// Fetch kinect image and pose
@@ -148,7 +148,7 @@ bool KinectPlugin::srvGetImage(ed_sensor_integration_msgs::GetImage::Request& re
148148
// ----------------------------------------------------------------------------------------------------
149149

150150
bool KinectPlugin::srvUpdate(ed_sensor_integration_msgs::Update::Request& req, ed_sensor_integration_msgs::Update::Response& res)
151-
{
151+
{
152152
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
153153
// Get new image
154154

@@ -206,7 +206,7 @@ bool KinectPlugin::srvRayTrace(ed_sensor_integration_msgs::RayTrace::Request& re
206206
{
207207
if (req.raytrace_pose.header.frame_id != "/map" && req.raytrace_pose.header.frame_id != "map")
208208
{
209-
ROS_ERROR("KinectPlugin::srvRayTrace only works with poses expressed in /map frame");
209+
ROS_ERROR("KinectPlugin::srvRayTrace only works with poses expressed in map frame");
210210
return false;
211211
}
212212

ed_sensor_integration/test/amigo_kinect2.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins:
1717
- name: tf_publisher
1818
lib: libed_tf_publisher_plugin.so
1919
parameters:
20-
root_frame_id: /map
20+
root_frame_id: map
2121
exclude: amigo
2222
- name: kinect_integration
2323
lib: libed_kinect2_plugin.so
@@ -34,7 +34,7 @@ plugins:
3434
initial_pose:
3535
x: $(env ROBOT_INIT_X)
3636
y: $(env ROBOT_INIT_Y)
37-
rz: $(env ROBOT_INIT_PHI)
37+
rz: $(env ROBOT_INIT_PHI)
3838
laser_model:
3939
topic: /amigo/base_laser/scan
4040
num_beams: 100

ed_sensor_integration/test/amigo_laser.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins:
1010
- name: tf_publisher
1111
lib: libed_tf_publisher_plugin.so
1212
parameters:
13-
root_frame_id: /map
13+
root_frame_id: map
1414
- name: laser_integration
1515
lib: libed_laser_plugin.so
1616
parameters:
@@ -27,7 +27,7 @@ plugins:
2727
initial_pose:
2828
x: $(env ROBOT_INIT_X)
2929
y: $(env ROBOT_INIT_Y)
30-
rz: $(env ROBOT_INIT_PHI)
30+
rz: $(env ROBOT_INIT_PHI)
3131
laser_model:
3232
topic: /amigo/base_laser/scan
3333
num_beams: 100

0 commit comments

Comments
 (0)