21 #include <unordered_map> 24 #include "Eigen/Eigenvalues" 30 namespace localization {
48 unsigned int CreateBinary(
unsigned char* buf,
unsigned int buf_size)
const;
58 inline void AddSample(
const float intensity,
const float altitude,
62 inline void MergeCell(
const float intensity,
const float intensity_var,
63 const unsigned int road_pt_count,
64 const unsigned int count,
72 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
104 int AddSample(
const float intensity,
const float altitude,
106 bool is_road =
false);
116 unsigned int CreateBinary(
unsigned char* buf,
unsigned int buf_size)
const;
121 static int CalAltitudeIndex(
const float resolution,
const float altitude);
124 static float CalAltitude(
const float resolution,
const int altitude_index);
131 std::unordered_map<int, NdtMapSingleCell>
cells_;
156 void Init(
unsigned int rows,
unsigned int cols);
158 void Reset(
unsigned int rows,
unsigned int cols);
162 virtual unsigned int LoadBinary(
unsigned char* buf);
168 unsigned int buf_size)
const;
172 virtual void GetIntensityImg(cv::Mat* intensity_img)
const;
176 unsigned int col)
const {
179 return map3d_cells_[row * cols_ + col];
185 return map3d_cells_[row * cols_ + col];
188 unsigned int GetRows()
const {
return rows_; }
190 unsigned int GetCols()
const {
return cols_; }
201 std::unique_ptr<NdtMapCells[]> map3d_cells_;
216 const float altitude,
221 intensity_ += v1 /
static_cast<float>(
count_);
224 static_cast<float>(
count_);
231 centroid_ += v3 /
static_cast<float>(
count_);
238 const float intensity_var,
239 const unsigned int road_pt_count,
240 const unsigned int count,
243 unsigned int new_count =
count_ + count;
244 float p0 =
static_cast<float>(
count_) / static_cast<float>(new_count);
245 float p1 =
static_cast<float>(count) / static_cast<float>(new_count);
246 float intensity_diff =
intensity_ - intensity;
250 intensity_diff * intensity_diff * p0 * p1;
273 Eigen::SelfAdjointEigenSolver<Eigen::Matrix3f> eigen_solver;
274 eigen_solver.compute(cov);
277 if (eigen_val(0, 0) < 0 || eigen_val(1, 1) < 0 || eigen_val(2, 2) <= 0) {
282 float min_covar_eigvalue = 0.01f * eigen_val(2, 2);
283 if (eigen_val(0, 0) < min_covar_eigvalue) {
284 eigen_val(0, 0) = min_covar_eigvalue;
285 if (eigen_val(1, 1) < min_covar_eigvalue) {
286 eigen_val(1, 1) = min_covar_eigvalue;
291 (centroid_evecs * eigen_val * centroid_evecs.inverse()).inverse();
292 if (
centroid_icov_.maxCoeff() == std::numeric_limits<float>::infinity() ||
293 centroid_icov_.minCoeff() == -std::numeric_limits<float>::infinity()) {
NdtMapCells & GetMapCell(unsigned int row, unsigned int col)
Get a map cell.
Definition: ndt_map_matrix.h:182
float intensity_var_
The variance intensity value.
Definition: ndt_map_matrix.h:78
NdtMapSingleCell & operator=(const NdtMapSingleCell &ref)
Overloading the assign operator.
unsigned char is_icov_available_
the inverse covariance available flag.
Definition: ndt_map_matrix.h:91
const unsigned int minimum_points_threshold_
minimum number of points needed.
Definition: ndt_map_matrix.h:93
void Reset()
Reset to default value.
Definition: ndt_map_matrix.h:204
The data structure of ndt Map matrix.
Definition: ndt_map_matrix.h:141
unsigned int GetRows() const
Get the size of row.
Definition: ndt_map_matrix.h:188
The options of the reflectance map.
Definition: base_map_config.h:32
Eigen::Vector3f Vector3f
Definition: base_map_fwd.h:29
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
Eigen::Matrix3f centroid_average_cov_
the pose covariance of the cell.
Definition: ndt_map_matrix.h:87
apollo::localization::msf::pyramid_map::NdtMapMatrix NdtMapMatrix
Definition: lidar_locator_ndt.h:71
int max_altitude_index_
The index of biggest altitude.
Definition: ndt_map_matrix.h:133
Eigen::Matrix3f Matrix3f
Definition: base_map_fwd.h:27
void CentroidEigenSolver(const Eigen::Matrix3f ¢roid_cov)
Definition: ndt_map_matrix.h:266
std::unordered_map< int, NdtMapSingleCell > cells_
The multiple altitudes of the cell.
Definition: ndt_map_matrix.h:131
unsigned int GetBinarySize() const
Get the binary size of the object.
unsigned int count_
The number of samples in the cell.
Definition: ndt_map_matrix.h:82
The data structure of the map cells in a map node.
Definition: base_map_matrix.h:28
std::vector< int > road_cell_indices_
The indices of road surface.
Definition: ndt_map_matrix.h:137
void MergeCell(const float intensity, const float intensity_var, const unsigned int road_pt_count, const unsigned int count, const Eigen::Vector3f ¢roid, const Eigen::Matrix3f ¢roid_cov)
Merge two cells.
Definition: ndt_map_matrix.h:237
unsigned int road_pt_count_
The number of samples belonging to road surface.
Definition: ndt_map_matrix.h:80
bool Init(const char *binary_name)
Eigen::Vector3f centroid_
the centroid of the cell.
Definition: ndt_map_matrix.h:85
Eigen::Matrix3f centroid_icov_
the pose inverse covariance of the cell.
Definition: ndt_map_matrix.h:89
NdtMapSingleCell()
The default constructor.
The data structure of ndt Map cell.
Definition: ndt_map_matrix.h:97
void AddSample(const float intensity, const float altitude, const Eigen::Vector3f centroid, bool is_road=false)
Add an sample to the single 3d map cell.
Definition: ndt_map_matrix.h:215
unsigned int LoadBinary(unsigned char *buf)
Load the map cell from a binary chunk.
static void Reduce(NdtMapSingleCell *cell, const NdtMapSingleCell &cell_new)
Combine two NdtMapSingleCell instances (Reduce).
unsigned int CreateBinary(unsigned char *buf, unsigned int buf_size) const
Create the binary. Serialization of the object.
The data structure of a single ndt map cell.
Definition: ndt_map_matrix.h:34
const NdtMapCells & GetMapCell(unsigned int row, unsigned int col) const
Get a const map cell.
Definition: ndt_map_matrix.h:175
int min_altitude_index_
The index of smallest altitude.
Definition: ndt_map_matrix.h:135
unsigned int GetCols() const
Get the size of cols.
Definition: ndt_map_matrix.h:190
float intensity_
The average intensity value.
Definition: ndt_map_matrix.h:76
apollo::localization::msf::pyramid_map::NdtMapCells NdtMapCells
Definition: lidar_locator_ndt.h:69