#ifndef PREPROCESS_ALGORITHMS_H #define PREPROCESS_ALGORITHMS_H #include "../../core/point_cloud_types.h" namespace algorithms { namespace preprocess { QVector keepLargestCluster( const QVector &points, int &removedCount, int &clusterCount, double clusterJoinDistanceScale); QVector downsampleDenseAreas( const QVector &points, int &removedCount, double downsampleCellScale); } // namespace preprocess } // namespace algorithms #endif // PREPROCESS_ALGORITHMS_H