https://github.com/wavestoweather/PCViewer.git
Raw File
Tip revision: e4a2a107c7790a4948783b0f8515ddf84afafc15 authored by Josef Stumpfegger on 24 November 2022, 12:56:34 UTC
Added links to the replicability video and dataset.
Tip revision: e4a2a10
LeaderClustering.h
#pragma once
#include "Data.hpp"

/*
*   Implements r tree accelerated leaders clustering (the leaders are inserted into an r-tree)
*/

class LeaderClustering{
public:
    // applies leaders clustering to data stored in 'in'
    // note that the compression of 'in' by subdimensioning is lost!
    // epsilon is avector of the epsilon parameter scaled with the min max for each dimension
    static void cluster(const Data& in, Data& out, const std::vector<float>& epsilon);
};
back to top