-
Notifications
You must be signed in to change notification settings - Fork 864
Expand file tree
/
Copy pathSignedDistanceField.cpp
More file actions
201 lines (177 loc) · 6.75 KB
/
SignedDistanceField.cpp
File metadata and controls
201 lines (177 loc) · 6.75 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*
* SignedDistanceField.hpp
*
* Created on: Aug 16, 2017
* Authors: Takahiro Miki, Peter Fankhauser
* Institute: ETH Zurich, ANYbotics
*/
#include <limits>
#include <algorithm>
#include <cmath>
#include <memory>
#include <string>
#include <vector>
#include "grid_map_sdf/SignedDistanceField.hpp"
#include "grid_map_sdf/distance_transform/dt.hpp"
#include "grid_map_core/GridMap.hpp"
namespace grid_map
{
using namespace distance_transform; // NOLINT
SignedDistanceField::SignedDistanceField()
: maxDistance_(std::numeric_limits<float>::max()),
zIndexStartHeight_(0.0),
resolution_(0.0),
lowestHeight_(-1e5) // We need some precision.
{
}
SignedDistanceField::~SignedDistanceField()
{
}
void SignedDistanceField::calculateSignedDistanceField(
const GridMap & gridMap, const std::string & layer,
const double heightClearance)
{
data_.clear();
resolution_ = gridMap.getResolution();
position_ = gridMap.getPosition();
size_ = gridMap.getSize();
Matrix map = gridMap.get(layer); // Copy!
float minHeight = map.minCoeffOfFinites();
if (!std::isfinite(minHeight)) {minHeight = lowestHeight_;}
float maxHeight = map.maxCoeffOfFinites();
if (!std::isfinite(maxHeight)) {maxHeight = lowestHeight_;}
// maxHeight, minHeight (TODO Make this an option).
const float valueForEmptyCells = lowestHeight_;
for (int i = 0; i < map.size(); ++i) {
if (std::isnan(map(i))) {map(i) = valueForEmptyCells;}
}
// Height range of the signed distance field is higher than the max height.
maxHeight += heightClearance;
Matrix sdfElevationAbove = Matrix::Ones(map.rows(), map.cols()) * maxDistance_;
Matrix sdfLayer = Matrix::Zero(map.rows(), map.cols());
std::vector<Matrix> sdf;
zIndexStartHeight_ = minHeight;
// Calculate signed distance field from bottom.
for (float h = minHeight; h < maxHeight; h += resolution_) {
Eigen::Matrix<bool, Eigen::Dynamic, Eigen::Dynamic> obstacleFreeField = map.array() < h;
Eigen::Matrix<bool, Eigen::Dynamic,
Eigen::Dynamic> obstacleField = obstacleFreeField.array() < 1;
Matrix sdfObstacle = getPlanarSignedDistanceField(obstacleField);
Matrix sdfObstacleFree = getPlanarSignedDistanceField(obstacleFreeField);
Matrix sdf2d;
// If 2d sdfObstacleFree calculation failed, neglect this SDF
// to avoid extreme small distances (-INF).
if ((sdfObstacleFree.array() >= distance_transform::INF).any()) {sdf2d = sdfObstacle;} else {
sdf2d = sdfObstacle - sdfObstacleFree;
}
sdf2d *= resolution_;
for (int i = 0; i < sdfElevationAbove.size(); ++i) {
if (sdfElevationAbove(i) == maxDistance_ && map(i) <= h) {
sdfElevationAbove(i) = h - map(i);
} else if (sdfElevationAbove(i) != maxDistance_ && map(i) <= h) {
sdfElevationAbove(i) = sdfLayer(i) + resolution_;
}
if (sdf2d(i) == 0) {sdfLayer(i) = h - map(i);} else if (sdf2d(i) < 0) {
sdfLayer(i) = -std::min(fabs(sdf2d(i)), fabs(map(i) - h));
} else {sdfLayer(i) = std::min(sdf2d(i), sdfElevationAbove(i));}
}
data_.push_back(sdfLayer);
}
}
grid_map::Matrix SignedDistanceField::getPlanarSignedDistanceField(
Eigen::Matrix<bool,
Eigen::Dynamic,
Eigen::Dynamic> & data) const
{
image<uchar> inputImage(data.rows(), data.cols(), true);
auto * input = &inputImage;
for (int y = 0; y < input->height(); y++) {
for (int x = 0; x < input->width(); x++) {
imRef(input, x, y) = data(x, y);
}
}
// Compute dt.
std::unique_ptr<image<float>> out(dt(input));
Matrix result(data.rows(), data.cols());
// Take square roots.
for (int y = 0; y < out->height(); y++) {
for (int x = 0; x < out->width(); x++) {
result(x, y) = std::sqrt(imRef(out.get(), x, y));
}
}
return result;
}
double SignedDistanceField::getDistanceAt(const Position3 & position) const
{
double xCenter = size_.x() / 2.0;
double yCenter = size_.y() / 2.0;
int i = std::round(xCenter - (position.x() - position_.x()) / resolution_);
int j = std::round(yCenter - (position.y() - position_.y()) / resolution_);
int k = std::round((position.z() - zIndexStartHeight_) / resolution_);
i = std::max(i, 0);
i = std::min(i, size_.x() - 1);
j = std::max(j, 0);
j = std::min(j, size_.y() - 1);
k = std::max(k, 0);
k = std::min(k, static_cast<int>(data_.size()) - 1);
return data_[k](i, j);
}
double SignedDistanceField::getInterpolatedDistanceAt(const Position3 & position) const
{
double xCenter = size_.x() / 2.0;
double yCenter = size_.y() / 2.0;
int i = std::round(xCenter - (position.x() - position_.x()) / resolution_);
int j = std::round(yCenter - (position.y() - position_.y()) / resolution_);
int k = std::round((position.z() - zIndexStartHeight_) / resolution_);
i = std::max(i, 0);
i = std::min(i, size_.x() - 1);
j = std::max(j, 0);
j = std::min(j, size_.y() - 1);
k = std::max(k, 0);
k = std::min(k, static_cast<int>(data_.size()) - 1);
Vector3 gradient = getDistanceGradientAt(position);
double xp = position_.x() + ((size_.x() - i) - xCenter) * resolution_;
double yp = position_.y() + ((size_.y() - j) - yCenter) * resolution_;
double zp = zIndexStartHeight_ + k * resolution_;
Vector3 error = position - Vector3(xp, yp, zp);
return data_[k](i, j) + gradient.dot(error);
}
Vector3 SignedDistanceField::getDistanceGradientAt(const Position3 & position) const
{
double xCenter = size_.x() / 2.0;
double yCenter = size_.y() / 2.0;
int i = std::round(xCenter - (position.x() - position_.x()) / resolution_);
int j = std::round(yCenter - (position.y() - position_.y()) / resolution_);
int k = std::round((position.z() - zIndexStartHeight_) / resolution_);
i = std::max(i, 1);
i = std::min(i, size_.x() - 2);
j = std::max(j, 1);
j = std::min(j, size_.y() - 2);
k = std::max(k, 1);
k = std::min(k, static_cast<int>(data_.size()) - 2);
double dx = (data_[k](i - 1, j) - data_[k](i + 1, j)) / (2 * resolution_);
double dy = (data_[k](i, j - 1) - data_[k](i, j + 1)) / (2 * resolution_);
double dz = (data_[k + 1](i, j) - data_[k - 1](i, j)) / (2 * resolution_);
return Vector3(dx, dy, dz);
}
void SignedDistanceField::convertToPointCloud(pcl::PointCloud<pcl::PointXYZI> & points) const
{
double xCenter = size_.x() / 2.0;
double yCenter = size_.y() / 2.0;
for (int z = 0; z < static_cast<int>(data_.size()); z++) {
for (int y = 0; y < static_cast<int>(size_.y()); y++) {
for (int x = 0; x < static_cast<int>(size_.x()); x++) {
double xp = position_.x() + ((size_.x() - x) - xCenter) * resolution_;
double yp = position_.y() + ((size_.y() - y) - yCenter) * resolution_;
double zp = zIndexStartHeight_ + z * resolution_;
pcl::PointXYZI p;
p.x = xp;
p.y = yp;
p.z = zp;
p.intensity = data_[z](x, y);
points.push_back(p);
}
}
}
}
} // namespace grid_map