struct mola::SparseTreesPointCloud::TCreationOptions

Overview

Options that configure the map’s internal structure. Unlike the other option groups, changing grid_size after the map already holds data requires discarding its contents (see setGridProperties()); use trySetCreationOptions() to apply it safely.

#include <SparseTreesPointCloud.h>

struct TCreationOptions: public mrpt::config::CLoadableOptions
{
    // fields

    float grid_size = 10.0f;

    // methods

    void loadFromConfigFile(
        const mrpt::config::CConfigFileBase& source,
        const std::string& section
        );

    void dumpToTextStream(std::ostream& out) const;
};