Apollo 10.0
自动驾驶开放平台
apollo::localization::msf::LossyMapCell2D结构体 参考

#include <lossy_map_matrix_2d.h>

apollo::localization::msf::LossyMapCell2D 的协作图:

Public 成员函数

 LossyMapCell2D ()
 The default constructor.
 
void Reset ()
 Reset to default value.
 
LossyMapCell2Doperator= (const LossyMapCell2D &ref)
 Overloading the assign operator.
 

Public 属性

unsigned int count
 The number of samples in the cell.
 
float intensity
 The average intensity value.
 
float intensity_var
 The variance intensity value.
 
float altitude
 The average altitude of the cell.
 
float altitude_ground
 The ground altitude of the cell.
 
bool is_ground_useful
 is ground altitude usefu
 

详细描述

在文件 lossy_map_matrix_2d.h26 行定义.

构造及析构函数说明

◆ LossyMapCell2D()

apollo::localization::msf::LossyMapCell2D::LossyMapCell2D ( )

The default constructor.

在文件 lossy_map_matrix_2d.cc23 行定义.

24 : count(0),
25 intensity(0.0),
26 intensity_var(0.0),
27 altitude(0.0),
28 altitude_ground(0.0),
29 is_ground_useful(false) {}
bool is_ground_useful
is ground altitude usefu
float altitude_ground
The ground altitude of the cell.
float intensity
The average intensity value.
float altitude
The average altitude of the cell.
float intensity_var
The variance intensity value.
unsigned int count
The number of samples in the cell.

成员函数说明

◆ operator=()

LossyMapCell2D & apollo::localization::msf::LossyMapCell2D::operator= ( const LossyMapCell2D ref)

Overloading the assign operator.

在文件 lossy_map_matrix_2d.cc40 行定义.

40 {
41 altitude = ref.altitude;
42 altitude_ground = ref.altitude_ground;
43 is_ground_useful = ref.is_ground_useful;
44 count = ref.count;
45 intensity = ref.intensity;
46 intensity_var = ref.intensity_var;
47 return *this;
48}

◆ Reset()

void apollo::localization::msf::LossyMapCell2D::Reset ( )
inline

Reset to default value.

在文件 lossy_map_matrix_2d.cc31 行定义.

31 {
32 intensity = 0.0;
33 intensity_var = 0.0;
34 altitude = 0.0;
35 altitude_ground = 0.0;
36 is_ground_useful = false;
37 count = 0;
38}

类成员变量说明

◆ altitude

float apollo::localization::msf::LossyMapCell2D::altitude

The average altitude of the cell.

在文件 lossy_map_matrix_2d.h52 行定义.

◆ altitude_ground

float apollo::localization::msf::LossyMapCell2D::altitude_ground

The ground altitude of the cell.

在文件 lossy_map_matrix_2d.h54 行定义.

◆ count

unsigned int apollo::localization::msf::LossyMapCell2D::count

The number of samples in the cell.

在文件 lossy_map_matrix_2d.h46 行定义.

◆ intensity

float apollo::localization::msf::LossyMapCell2D::intensity

The average intensity value.

在文件 lossy_map_matrix_2d.h48 行定义.

◆ intensity_var

float apollo::localization::msf::LossyMapCell2D::intensity_var

The variance intensity value.

在文件 lossy_map_matrix_2d.h50 行定义.

◆ is_ground_useful

bool apollo::localization::msf::LossyMapCell2D::is_ground_useful

is ground altitude usefu

在文件 lossy_map_matrix_2d.h56 行定义.


该结构体的文档由以下文件生成: