Refactor PGM writing to be more explicit. (#602)
parent
7259bb0baf
commit
10eba093cc
|
@ -26,35 +26,28 @@ namespace {
|
||||||
|
|
||||||
void WritePgm(const ::cartographer::io::Image& image, const double resolution,
|
void WritePgm(const ::cartographer::io::Image& image, const double resolution,
|
||||||
::cartographer::io::FileWriter* file_writer) {
|
::cartographer::io::FileWriter* file_writer) {
|
||||||
// Flipping the image into ROS coordinate frame.
|
|
||||||
const std::string header = "P5\n# Cartographer map; " +
|
const std::string header = "P5\n# Cartographer map; " +
|
||||||
std::to_string(resolution) + " m/pixel\n" +
|
std::to_string(resolution) + " m/pixel\n" +
|
||||||
std::to_string(image.height()) + " " +
|
std::to_string(image.width()) + " " +
|
||||||
std::to_string(image.width()) + "\n255\n";
|
std::to_string(image.height()) + "\n255\n";
|
||||||
file_writer->Write(header.data(), header.size());
|
file_writer->Write(header.data(), header.size());
|
||||||
for (int x = 0; x < image.width(); ++x) {
|
for (int y = 0; y < image.height(); ++y) {
|
||||||
for (int y = image.height() - 1; y >= 0; --y) {
|
for (int x = 0; x < image.width(); ++x) {
|
||||||
const char color = image.GetPixel(x, y)[0];
|
const char color = image.GetPixel(x, y)[0];
|
||||||
file_writer->Write(&color, 1);
|
file_writer->Write(&color, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void WriteYaml(const ::cartographer::io::Image& image,
|
void WriteYaml(const double resolution, const Eigen::Vector2d& origin,
|
||||||
const ::cartographer::mapping_2d::MapLimits& limits,
|
const std::string& pgm_filename,
|
||||||
const std::string& pgm_filename, const Eigen::Array2i& offset,
|
|
||||||
::cartographer::io::FileWriter* file_writer) {
|
::cartographer::io::FileWriter* file_writer) {
|
||||||
const double resolution = limits.resolution();
|
|
||||||
const double x_offset =
|
|
||||||
limits.max().x() - (offset.y() + image.height()) * resolution;
|
|
||||||
const double y_offset =
|
|
||||||
limits.max().y() - (offset.x() + image.width()) * resolution;
|
|
||||||
// Magic constants taken directly from ros map_saver code:
|
// Magic constants taken directly from ros map_saver code:
|
||||||
// https://github.com/ros-planning/navigation/blob/ac41d2480c4cf1602daf39a6e9629142731d92b0/map_server/src/map_saver.cpp#L114
|
// https://github.com/ros-planning/navigation/blob/ac41d2480c4cf1602daf39a6e9629142731d92b0/map_server/src/map_saver.cpp#L114
|
||||||
const std::string output =
|
const std::string output =
|
||||||
"image: " + pgm_filename + "\n" +
|
"image: " + pgm_filename + "\n" +
|
||||||
"resolution: " + std::to_string(resolution) + "\n" + "origin: [" +
|
"resolution: " + std::to_string(resolution) + "\n" + "origin: [" +
|
||||||
std::to_string(x_offset) + ", " + std::to_string(y_offset) +
|
std::to_string(origin.x()) + ", " + std::to_string(origin.y()) +
|
||||||
", 0.]\nnegate: 0\noccupied_thresh: 0.65\nfree_thresh: 0.196\n";
|
", 0.]\nnegate: 0\noccupied_thresh: 0.65\nfree_thresh: 0.196\n";
|
||||||
file_writer->Write(output.data(), output.size());
|
file_writer->Write(output.data(), output.size());
|
||||||
}
|
}
|
||||||
|
@ -102,12 +95,18 @@ RosMapWritingPointsProcessor::Flush() {
|
||||||
if (image != nullptr) {
|
if (image != nullptr) {
|
||||||
auto pgm_writer = file_writer_factory_(filestem_ + ".pgm");
|
auto pgm_writer = file_writer_factory_(filestem_ + ".pgm");
|
||||||
const std::string pgm_filename = pgm_writer->GetFilename();
|
const std::string pgm_filename = pgm_writer->GetFilename();
|
||||||
WritePgm(*image, probability_grid_.limits().resolution(), pgm_writer.get());
|
const auto& limits = probability_grid_.limits();
|
||||||
|
image->Rotate90DegreesClockwise();
|
||||||
|
|
||||||
|
WritePgm(*image, limits.resolution(), pgm_writer.get());
|
||||||
CHECK(pgm_writer->Close());
|
CHECK(pgm_writer->Close());
|
||||||
|
|
||||||
|
const Eigen::Vector2d origin(
|
||||||
|
limits.max().x() - (offset.y() + image->width()) * limits.resolution(),
|
||||||
|
limits.max().y() -
|
||||||
|
(offset.x() + image->height()) * limits.resolution());
|
||||||
auto yaml_writer = file_writer_factory_(filestem_ + ".yaml");
|
auto yaml_writer = file_writer_factory_(filestem_ + ".yaml");
|
||||||
WriteYaml(*image, probability_grid_.limits(), pgm_filename, offset,
|
WriteYaml(limits.resolution(), origin, pgm_filename, yaml_writer.get());
|
||||||
yaml_writer.get());
|
|
||||||
CHECK(yaml_writer->Close());
|
CHECK(yaml_writer->Close());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue