-
Notifications
You must be signed in to change notification settings - Fork 10
/
viola.h
58 lines (56 loc) · 1.37 KB
/
viola.h
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
/**
* Copyright (c) 2016-2023 shuyuanmao <[email protected]>. All rights reserved.
* @author shuyuanmao <[email protected]>
* @date 2019-05-19 02:07
* @details
*/
#pragma once
#define VS_VERSION_MAJOR 0
#define VS_VERSION_MINOR 0
#define VS_VERSION_REVISION 1
#include "vs_align.h"
#include "vs_argparse.h"
#include "vs_basic.h"
#include "vs_calib.h"
#include "vs_cam_cap.h"
#include "vs_color_filter.h"
#include "vs_cv_convert.h"
#include "vs_cv_io.h"
#include "vs_data.h"
#include "vs_data_recorder.h"
#include "vs_debug_draw.h"
#include "vs_eigen_io.h"
#include "vs_encrypt.h"
#include "vs_feature.h"
#include "vs_feature_line.h"
#include "vs_g2o_solver.h"
#include "vs_geometry2d.h"
#include "vs_geometry3d.h"
#include "vs_gridmap.h"
#include "vs_imtrans.h"
#include "vs_improc.h"
#include "vs_imsaver.h"
#include "vs_kdtree.h"
#include "vs_lane_detect.h"
#include "vs_line_match.h"
#include "vs_logger.h"
#include "vs_mapping.h"
#include "vs_mesh.h"
#include "vs_os.h"
#include "vs_panorama.h"
#include "vs_perf.h"
#include "vs_pf.h"
#include "vs_plot.h"
#include "vs_pnp.h"
#include "vs_random.h"
#include "vs_raycast.h"
#include "vs_rot.h"
#include "vs_tictoc.h"
#include "vs_tqdm.h"
#include "vs_tracking.h"
#include "vs_triangulate.h"
#include "vs_video_saver.h"
#include "vs_vio_data_loader.h"
#include "vs_vio_data_saver.h"
#include "vs_viz3d.h"
#include "vs_yaml_parser.h"