iterative closest points
CEV ICP algorithm library
Loading...
Searching...
No Matches
vanilla.h
Go to the documentation of this file.
1
7#include "icp/icp.h"
8
9namespace icp {
10 class Vanilla final : public ICP {
11 public:
12 Vanilla();
13 Vanilla(const Config& config);
14 ~Vanilla();
15
16 void setup() override;
17 void iterate() override;
18
19 private:
20 void compute_matches();
21
22 std::vector<icp::Vector> a_current;
23 };
24}
Configuration for ICP instances.
Definition icp.h:81
Interface for iterative closest points.
Definition icp.h:49
void iterate() override
Perform one iteration of ICP for the point clouds a and b provided with ICP::begin.
Definition vanilla.cpp:36
void setup() override
Per-method setup code.
Definition vanilla.cpp:30
Definition driver.h:12