-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
83 lines (62 loc) · 2.09 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <array>
#include <string>
#include "matplotlibcpp.h"
#include "class_cubic_bspline.h"
namespace plt = matplotlibcpp;
std::vector<std::array<double, 2>> parseFile(const std::string& filename) {
std::vector<std::array<double, 2>> data;
std::ifstream file(filename);
if (!file.is_open()) {
std::cerr << "Error: Could not open file " << filename << std::endl;
return data;
}
std::string line;
while (std::getline(file, line)) {
std::istringstream lineStream(line);
std::string num1, num2;
// Split line by comma
if (std::getline(lineStream, num1, ',') && std::getline(lineStream, num2)) {
// Convert strings to doubles and add to array
std::array<double, 2> pair = {std::stod(num1), std::stod(num2)};
data.push_back(pair);
}
}
file.close();
return data;
}
int main(){
// Read control points from file
std::vector<std::array<double, 2>> control_points = parseFile("raw_points/road_points_4.txt");
// Create a cubic bspline object
cubic_bspline_maker::CubicBSpline cubic_bspline(control_points);
// Generate points on the curve
std::vector<std::array<double, 2>> points;
double dt = 0.005;
for (double t = 0.0; t <= 1.0; t += dt){
auto xy = cubic_bspline.calc_xy_from_t(t);
points.push_back(xy);
}
// ----- Plotting -----
// Plot the control points as scatter
std::vector<double> x, y;
for (int i = 0; i < control_points.size(); i++){
x.push_back(control_points.at(i).at(0));
y.push_back(control_points.at(i).at(1));
}
plt::grid(true);
plt::axis("equal");
plt::scatter(x, y, 5, {{"color", "blue"}});
// Plot the cubic bspline curve
std::vector<double> x_curve, y_curve;
for (int i = 0; i < points.size(); i++){
x_curve.push_back(points.at(i).at(0));
y_curve.push_back(points.at(i).at(1));
}
plt::plot(x_curve, y_curve, "r-");
plt::show();
return 0;
}