MeVisLab Toolbox Reference
|
Container for statistical point cloud parameters. More...
#include <mlPCLSupportStatistics.h>
Public Member Functions | |
PointCloudStatistics () | |
Initializes the parameters to minimum = DBL_MAX, maximum = -DBL_MAX, and average to 0. | |
Public Attributes | |
double | minimum |
Minimum of all values or DBL_MAX if no values or empty point cloud. | |
double | maximum |
Maximum of all values or -DBL_MAX if no values or empty point cloud. | |
double | average |
Average of all values and 0 if no values or empty point cloud. | |
double | sum |
Sum of all values and 0 if no values or empty point cloud. | |
double | sumAbsolute |
Sum of all absolute values and 0 if no values or empty point cloud. | |
double | median |
Value of NumPoints/2 entry of all values after sorting or 0 if no values, empty point cloud or not calculated. | |
Container for statistical point cloud parameters.
Definition at line 28 of file mlPCLSupportStatistics.h.
|
inline |
Initializes the parameters to minimum = DBL_MAX, maximum = -DBL_MAX, and average to 0.
Definition at line 30 of file mlPCLSupportStatistics.h.
double ml::PCLSupportTools::PointCloudStatistics::average |
Average of all values and 0 if no values or empty point cloud.
Definition at line 45 of file mlPCLSupportStatistics.h.
double ml::PCLSupportTools::PointCloudStatistics::maximum |
Maximum of all values or -DBL_MAX if no values or empty point cloud.
Definition at line 42 of file mlPCLSupportStatistics.h.
double ml::PCLSupportTools::PointCloudStatistics::median |
Value of NumPoints/2 entry of all values after sorting or 0 if no values, empty point cloud or not calculated.
Definition at line 55 of file mlPCLSupportStatistics.h.
Referenced by ml::StatisticalClusterInfo::finalize().
double ml::PCLSupportTools::PointCloudStatistics::minimum |
Minimum of all values or DBL_MAX if no values or empty point cloud.
Definition at line 39 of file mlPCLSupportStatistics.h.
double ml::PCLSupportTools::PointCloudStatistics::sum |
Sum of all values and 0 if no values or empty point cloud.
Definition at line 48 of file mlPCLSupportStatistics.h.
double ml::PCLSupportTools::PointCloudStatistics::sumAbsolute |
Sum of all absolute values and 0 if no values or empty point cloud.
Definition at line 51 of file mlPCLSupportStatistics.h.