2023-11-22 12:56:31 +01:00
|
|
|
// Example of a plugin action
|
|
|
|
|
|
2023-11-26 22:43:42 +01:00
|
|
|
#include "ccPointCloud.h"
|
|
|
|
|
|
2023-11-30 19:43:41 +01:00
|
|
|
#include "Eigen/Dense"
|
|
|
|
|
|
2023-11-22 12:56:31 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
class ccMainAppInterface;
|
|
|
|
|
|
|
|
|
|
namespace G3Point
|
|
|
|
|
{
|
2023-11-30 19:43:41 +01:00
|
|
|
void add_to_stack(int index, const Eigen::ArrayXi& n_donors, const Eigen::ArrayXXi& donors, std::vector<int>& stack);
|
|
|
|
|
int segment_labels(bool useParallelStrategy=true);
|
|
|
|
|
void get_neighbors_distances_slopes(unsigned index);
|
2023-11-26 22:43:42 +01:00
|
|
|
bool query_neighbors(ccPointCloud* cloud, ccMainAppInterface* appInterface, bool useParallelStrategy=true);
|
2023-11-22 12:56:31 +01:00
|
|
|
void performActionA( ccMainAppInterface *appInterface );
|
|
|
|
|
}
|