struct mp2p_icp_filters::FilterMLS::Impl

Overview

struct Impl
{
    // typedefs

    typedef std::vector<mrpt::math::TPoint3Df> TThreadSafePointVec;
    typedef std::vector<mrpt::math::TPoint3Df> TThreadSafeNormalVec;
    typedef std::vector<std::size_t> TThreadSafeIndexVec;

    // fields

    TThreadSafePointVec new_points;
    TThreadSafeIndexVec new_points_source_index;
    TThreadSafeNormalVec new_normals;

    // methods

    void process_point(
        size_t index,
        const mrpt::maps::CPointsMap& input_pc,
        const mrpt::maps::CPointsMap& query_pc,
        const Parameters& p
        );
};