forked from torresszy/auto_calibration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalibration.hpp
57 lines (32 loc) · 812 Bytes
/
calibration.hpp
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
#ifndef calibration_hpp
#define calibration_hpp
#include "ceres/ceres.h"
#include "line_extractor.hpp"
using ceres::AutoDiffCostFunction;
using ceres::CostFunction;
using ceres::Problem;
using ceres::Solve;
using ceres::Solver;
bool front_back_calibration;
void side_camera_calibration;
bool calibration;
void solve_one_frame_cpy;
bool solve_multi_frame_cpy;
void points_to_param;
double get_yaw;
void get_all_lines_from_pairs;
double c_py;
double c_rl;
double get_lane_width_from_params;
void solve_one_frame_crl;
bool solve_multi_frame_crl;
double get_lane_width;
double get_midpoint;
double c_sp;
void solve_one_side_csp;
void solve_one_frame_csp;
void solve_multi_frame_csp;
bool correspondency_check;
bool pre_lanemark_pairing_check;
void update_lanes;
#endif /* calibration_hpp */