struct mrpt::maps::TRandomFieldVoxel

The contents of each voxel in a CRandomFieldGridMap3D map.

#include <mrpt/maps/CRandomFieldGridMap3D.h>

struct TRandomFieldVoxel
{
    //
fields

    double mean_value;
    double stddev_value;

    // construction

    TRandomFieldVoxel(double _mean_value = .0, double _stddev_value = .0);
};

Fields

double mean_value

Mean and sigma (standard deviation) estimated values for the voxel.

Construction

TRandomFieldVoxel(double _mean_value = .0, double _stddev_value = .0)

Constructor.