-
Notifications
You must be signed in to change notification settings - Fork 806
/
ImageToGridmapDemo.cpp
54 lines (46 loc) · 1.68 KB
/
ImageToGridmapDemo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* ImageToGridmapDemo.cpp
*
* Created on: May 4, 2015
* Author: Péter Fankhauser
* Institute: ETH Zurich, ANYbotics
*/
#include "grid_map_demos/ImageToGridmapDemo.hpp"
namespace grid_map_demos {
ImageToGridmapDemo::ImageToGridmapDemo(ros::NodeHandle& nodeHandle)
: nodeHandle_(nodeHandle),
map_(grid_map::GridMap({"elevation"})),
mapInitialized_(false)
{
readParameters();
map_.setBasicLayers({"elevation"});
imageSubscriber_ = nodeHandle_.subscribe(imageTopic_, 1, &ImageToGridmapDemo::imageCallback, this);
gridMapPublisher_ = nodeHandle_.advertise<grid_map_msgs::GridMap>("grid_map", 1, true);
}
ImageToGridmapDemo::~ImageToGridmapDemo()
{
}
bool ImageToGridmapDemo::readParameters()
{
nodeHandle_.param("image_topic", imageTopic_, std::string("/image"));
nodeHandle_.param("resolution", resolution_, 0.03);
nodeHandle_.param("min_height", minHeight_, 0.0);
nodeHandle_.param("max_height", maxHeight_, 1.0);
return true;
}
void ImageToGridmapDemo::imageCallback(const sensor_msgs::Image& msg)
{
if (!mapInitialized_) {
grid_map::GridMapRosConverter::initializeFromImage(msg, resolution_, map_);
ROS_INFO("Initialized map with size %f x %f m (%i x %i cells).", map_.getLength().x(),
map_.getLength().y(), map_.getSize()(0), map_.getSize()(1));
mapInitialized_ = true;
}
grid_map::GridMapRosConverter::addLayerFromImage(msg, "elevation", map_, minHeight_, maxHeight_);
grid_map::GridMapRosConverter::addColorLayerFromImage(msg, "color", map_);
// Publish as grid map.
grid_map_msgs::GridMap mapMessage;
grid_map::GridMapRosConverter::toMessage(map_, mapMessage);
gridMapPublisher_.publish(mapMessage);
}
} /* namespace */