├── .gitignore
├── .idea
├── camera_lidar_calibration.iml
├── codeStyles
│ └── Project.xml
├── misc.xml
├── modules.xml
├── vcs.xml
└── workspace.xml
├── CMakeLists.txt
├── README.md
├── config
├── config.yaml
└── config_logitech.yaml
├── data
├── data.txt
├── data_v2.txt
├── image00.png
├── image_points.txt
├── image_test.png
├── laser_points.txt
├── laser_test_points.txt
└── laser_test_points_v2.txt
├── imgs
├── image00.png
├── image01.png
├── image02.png
├── image03.png
├── image04.png
├── image05.png
├── image06.png
├── image07.png
├── image08.png
├── image09.png
├── image10.png
├── image11.png
├── image12.png
├── image13.png
├── image14.png
├── image15.png
├── image16.png
├── image17.png
├── image18.png
├── image19.png
├── image20.png
├── image21.png
├── image22.png
├── image23.png
├── image24.png
├── image25.png
├── image26.png
├── image27.png
├── image28.png
├── image29.png
├── image30.png
├── image31.png
├── image32.png
├── image33.png
├── image34.png
├── image35.png
├── image36.png
├── image37.png
├── image38.png
├── image39.png
└── image_lists.txt
├── include
├── config.h
├── error_types.h
└── error_types_v2.h
├── lib
└── libcamera_lidar_calibration.so
├── results
├── corner_detect.gif
├── demo.gif
├── demo.mp4
├── flag.jpg
├── optimization_result.png
├── reprojection1.png
├── reprojection2.png
└── rotation.gif
├── rosbag
└── laser_camera_demo.bag
└── src
├── camera_lidar_calibration.cc
├── camera_lidar_calibration_v2.cc
├── config.cc
├── corner_detecter.cc
├── detect_plane_with_aruco.cc
└── reprojection.cc
/.gitignore:
--------------------------------------------------------------------------------
1 | build/
2 | cmake-build-debug/
3 | .idea/
4 |
--------------------------------------------------------------------------------
/.idea/camera_lidar_calibration.iml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.idea/codeStyles/Project.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/workspace.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | <<<<<<< HEAD
19 |
20 | =======
21 |
22 |
23 |
24 |
25 |
26 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 | <<<<<<< HEAD
40 |
41 |
42 |
43 |
44 |
45 | =======
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 | <<<<<<< HEAD
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 | =======
85 |
86 |
87 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 | <<<<<<< HEAD
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 | =======
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
191 |
192 |
193 |
194 |
195 | true
196 | DEFINITION_ORDER
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 | <<<<<<< HEAD
236 |
237 | =======
238 |
239 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 | 1530754023605
278 |
279 |
280 | 1530754023605
281 |
282 |
283 |
284 |
285 | <<<<<<< HEAD
286 |
287 |
288 | =======
289 |
290 |
291 |
292 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
293 |
294 |
295 |
296 |
297 | <<<<<<< HEAD
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 | =======
322 |
323 |
324 |
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 | <<<<<<< HEAD
360 |
361 |
362 |
363 |
364 |
365 |
366 |
367 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
403 | =======
404 |
405 |
406 |
407 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
415 |
416 |
417 |
418 |
419 |
420 |
421 |
422 |
423 |
424 |
425 |
426 |
427 |
428 |
429 |
430 |
431 |
432 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
433 |
434 |
435 |
436 |
437 |
438 |
439 |
440 |
441 |
442 |
443 |
444 |
445 |
446 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
454 |
455 |
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 |
465 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
474 |
475 |
476 |
477 |
478 |
479 |
480 |
481 |
482 |
483 |
484 |
485 |
486 |
487 |
488 |
489 |
490 |
491 |
492 |
493 |
494 |
495 |
496 |
497 |
498 |
499 |
500 |
501 |
502 |
503 |
504 |
505 |
506 |
507 |
508 |
509 |
510 |
511 |
512 |
513 |
514 |
515 |
516 |
517 |
518 |
519 |
520 |
521 |
522 |
523 |
524 |
525 | <<<<<<< HEAD
526 |
527 | =======
528 |
529 |
530 |
531 |
532 |
533 |
534 |
535 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
536 |
537 |
538 |
539 |
540 |
541 |
542 |
543 |
544 |
545 |
546 |
547 |
548 |
549 |
550 |
551 |
552 |
553 |
554 |
555 |
556 |
557 |
558 |
559 |
560 |
561 |
562 |
563 |
564 |
565 |
566 |
567 |
568 |
569 |
570 |
571 |
572 |
573 |
574 |
575 |
576 |
577 |
578 |
579 |
580 |
581 |
582 |
583 |
584 |
585 |
586 |
587 |
588 |
589 |
590 |
591 |
592 |
593 |
594 |
595 |
596 |
597 |
598 |
599 |
600 |
601 |
602 |
603 |
604 |
605 |
606 |
607 |
608 |
609 |
610 |
611 |
612 |
613 |
614 |
615 |
616 |
617 |
618 |
619 |
620 |
621 |
622 |
623 |
624 |
625 |
626 |
627 |
628 |
629 |
630 |
631 |
632 |
633 |
634 |
635 |
636 |
637 |
638 |
639 |
640 |
641 |
642 |
643 |
644 |
645 |
646 |
647 |
648 |
649 |
650 |
651 |
652 |
653 |
654 |
655 |
656 |
657 |
658 |
659 |
660 |
661 |
662 |
663 |
664 |
665 |
666 |
667 |
668 |
669 |
670 |
671 |
672 |
673 |
674 |
675 |
676 |
677 |
678 |
679 |
680 |
681 |
682 |
683 |
684 |
685 |
686 |
687 |
688 |
689 |
690 |
691 |
692 |
693 |
694 |
695 |
696 |
697 |
698 |
699 |
700 |
701 |
702 |
703 |
704 |
705 |
706 |
707 |
708 |
709 |
710 |
711 |
712 |
713 |
714 |
715 |
716 |
717 |
718 |
719 |
720 |
721 |
722 |
723 |
724 |
725 |
726 |
727 |
728 |
729 |
730 |
731 | <<<<<<< HEAD
732 |
733 |
734 | =======
735 |
736 |
737 |
738 |
739 |
740 |
741 |
742 |
743 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
744 |
745 |
746 |
747 |
748 |
749 |
750 |
751 |
752 |
753 |
754 |
755 |
756 |
757 |
758 |
759 |
760 |
761 |
762 |
763 |
764 |
765 |
766 | <<<<<<< HEAD
767 |
768 |
769 | =======
770 |
771 |
772 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
773 |
774 |
775 |
776 |
777 |
778 |
779 | <<<<<<< HEAD
780 |
781 |
782 |
783 |
784 |
785 |
786 |
787 | =======
788 |
789 |
790 |
791 |
792 |
793 |
794 |
795 |
796 |
797 |
798 |
799 |
800 |
801 | >>>>>>> dfc1707b1b49a93f3dcdef9430477ae1c2f71ceb
802 |
803 |
804 |
805 |
806 |
807 |
808 |
809 |
810 |
811 |
812 |
813 |
814 |
815 |
816 |
817 |
818 |
819 |
820 |
821 |
822 |
823 |
824 |
825 |
826 |
827 |
828 |
--------------------------------------------------------------------------------
/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | cmake_minimum_required(VERSION 2.8)
2 | project(camera_lidar_calibration)
3 |
4 | set(CMAKE_CXX_STANDARD 11)
5 |
6 | ## Test modele, if you do not have aruco, just comment these lines
7 |
8 | set(ARUCO_PATH /usr/local)
9 | SET(CMAKE_MODULE_PATH ${ARUCO_PATH}/lib/cmake)
10 | SET(ARUCO_INCLUDE_DIRS ${ARUCO_PATH}/include/aruco )
11 |
12 | find_package(aruco REQUIRED )
13 | ## Test modele, if you do not have aruco, just comment these lines
14 | #SET(CMAKE_MODULE_PATH ${CMAKE_INSTALL_PREFIX}/lib/cmake/ )
15 | MESSAGE(${ARUCO_INCLUDE_DIRS} )
16 | ## Test modele, if you do not have aruco, just comment these lines
17 |
18 | find_package(OpenCV 3.3 REQUIRED)
19 | find_package(Ceres REQUIRED)
20 | find_package(Eigen3 REQUIRED)
21 | ## Test modele, if you do not have aruco, just comment these lines
22 |
23 | ## Test modele, if you do not have aruco, just comment these lines
24 |
25 | INCLUDE(FindPkgConfig)
26 |
27 | include_directories(
28 | ${PROJECT_SOURCE_DIR}/include
29 | ${PROJECT_SOURCE_DIR}
30 | ${CERES_INCLUDE_DIRS}
31 | ${OpenCV_INCLUDE_DIRS}
32 | ${EIGEN3_INCLUDE_DIR}
33 | ${ARUCO_INCLUDE_DIRS} ## Test modele, if you do not have aruco, just comment these lines
34 | )
35 |
36 | set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/lib)
37 |
38 | add_library(${PROJECT_NAME} SHARED
39 | src/config.cc
40 | )
41 |
42 | LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/res)
43 |
44 | target_link_libraries(${PROJECT_NAME}
45 | ${OpenCV_LIBS}
46 | ${EIGEN3_LIBS}
47 | ${CERES_LIBRARIES}
48 | ${aruco_LIBS}
49 | # ${ARUCO_LIBS}
50 | )
51 |
52 | add_executable(camera_laser_calibration src/camera_lidar_calibration.cc)
53 | target_link_libraries(camera_laser_calibration ${PROJECT_NAME})
54 |
55 | add_executable(corner_detecter src/corner_detecter.cc)
56 | target_link_libraries(corner_detecter ${PROJECT_NAME})
57 |
58 | add_executable(reprojection src/reprojection.cc)
59 | target_link_libraries(reprojection ${PROJECT_NAME})
60 |
61 | add_executable(detect_plane_with_aruco src/detect_plane_with_aruco.cc)
62 | target_link_libraries(detect_plane_with_aruco ${PROJECT_NAME})
63 |
64 | add_executable(camera_laser_calibration_v2 src/camera_lidar_calibration_v2.cc)
65 | target_link_libraries(camera_laser_calibration_v2 ${PROJECT_NAME})
66 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Camera Lidar Calibration Tool.
2 |
3 |  
4 |
5 | Author:xinliangzhong(xinliangzhong@foxmail.com)
6 |
7 | 
8 |
9 | 
10 |
11 | ### 1.Description
12 | The package is used to calibrate a 2D LiDAR or laser range finder (LRF)
13 | with a monocular camera. Specficially, Hokuyo UTM-30LX have been suscessfully calibrated against a mono camera.
14 |
15 | **But this approach is really a naive way, in a word, it just 3D-2D optimization problem.**
16 | **So we decide to develop the new approach to calibrate the extrinsic**
17 |
18 | ### 2.Prerequisites
19 | We have tested the library in 16.04, but it should be easy to compile in other platforms.
20 |
21 | ##### OpenCV
22 | We use [OpenCV](http://opencv.org) to manipulate images and features. Dowload and install instructions can be found at: http://opencv.org. **Required at leat 2.4.3. Tested with OpenCV 3.3**.
23 |
24 | ##### Eigen3
25 | Download and install instructions can be found at: http://eigen.tuxfamily.org. **Required at least 3.1.0**.
26 |
27 | ##### Ceres
28 | Download and install instructions can be found at: http://www.ceres-solver.org/installation.html.
29 |
30 | ### 3.How to build
31 |
32 | ```
33 | mkdir build
34 | cd build
35 | cmake ..
36 | make
37 | ```
38 |
39 | ### 4.How to Prepare the calibration data
40 |
41 | We need the 3d points in laser coordination and the same points in the image.
42 | The 3D points (actually z=0) you can put in the ``data/laser_points.txt``;
43 | The 2D points in the image you can put in the ``data/image_points.txt``;
44 | We combine the data in data.txt with 4 cols which represents ``x y u v`` respectively.
45 |
46 | **So how to fine the 3D-2D pairs correctly?**
47 | Here we provide a simple way:
48 | Suppose your laser in the horizontal plane, and we just need to measure the height of the laser.
49 | Actually the red point in the following picture is the flag that we tested in our setups.
50 | 
51 |
52 | For the ``x and y``, you can use the rviz (2D nav goal) tool to measure. The result will be show in the terminal.
53 | For the ``u and v`` in the image, we provide a simple tool to detect corners in the rectangle your mouse selected.
54 | and the data will automatically saved in ``data/image_points.txt``.
55 | 
56 |
57 | ### 5.Key Algorithm
58 |
59 | Actually it just a least square problem.
60 |
61 |
62 |
63 | ### 6.Show the reprojection results
64 | ``Tcl: which takes a vector from laser to camera.``
65 |
66 | 
67 |
68 | 
69 | ### 7.Good luck to you!
--------------------------------------------------------------------------------
/config/config.yaml:
--------------------------------------------------------------------------------
1 | %YAML:1.0
2 | # Put you camera param here
3 | working.dir: /home/m/work/camera_lidar_calibration/
4 | images.dir: /home/m/work/camera_lidar_calibration/imgs
5 |
6 | #fx: 404.5337017698929
7 | #fy: 404.85030992930444
8 | #cx: 296.69880599308635
9 | #cy: 272.0502551058445
10 | #
11 | #k1: -0.3271935419835578
12 | #k2: 0.08485645915218631
13 | #p1: -0.0014120013052523182
14 | #p2: -0.0012464247545589473
15 |
16 | fx: 410.741321520433
17 | fy: 410.84566299125754
18 | cx: 313.5588475730438
19 | cy: 245.18622490655093
20 |
21 | k1: -0.35013485272786493
22 | k2: 0.10995463853987104
23 | p1: -0.0015536807659894778
24 | p2: 0.000746095343908784
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/config/config_logitech.yaml:
--------------------------------------------------------------------------------
1 | %YAML:1.0
2 | # Put you camera param here
3 | working.dir: /home/m/work/camera_lidar_calibration/
4 | images.dir: /home/m/work/camera_lidar_calibration/imgs
5 |
6 | fx: 427.521169
7 | fy: 432.063111
8 | cx: 324.020518
9 | cy: 269.937447
10 |
11 | k1: -0.368916
12 | k2: 0.116858
13 | p1: 0.004707
14 | p2: -0.002324
15 |
16 | width: 640
17 | height: 480
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/data/data.txt:
--------------------------------------------------------------------------------
1 | 2.712 -2.958 312.596 301.265
2 | 3.200 -2.412 239.083 301.228
3 | 3.371 -2.383 224.351 300.087
4 | 3.892 -1.435 111.387 298.426
5 | 4.091 -1.448 102.396 295.183
6 | 3.934 -1.856 150.463 295.506
7 | 3.595 -2.448 219.262 295.506
8 | 3.623 -2.706 237.624 294.143
9 | 3.972 -2.177 178.607 293.038
10 | 4.402 -1.177 62.6532 292.229
11 | 4.474 -0.933 32.6626 293.128
12 | 4.580 -1.186 60.1791 291.182
13 | 4.492 -1.481 95.1689 290.294
14 | 4.535 -1.344 77.6233 291.148
15 | 1.547 -4.372 499.095 298.397
16 | 2.290 -4.001 412.204 294.389
17 | 2.731 -3.694 361.354 293.244
18 | 3.452 -1.685 153.21 302.061
19 | 3.364 -1.845 173.758 302.403
20 | 3.727 -1.156 78.7747 303.512
21 | 3.416 -1.852 172.298 302.494
22 | 3.662 -1.351 107.748 303.117
23 | 3.861 -1.465 113.14 300.369
24 | 3.957 -1.227 81.08 300.046
25 | 3.768 -1.679 140.554 300.057
26 | 3.649 -1.921 167.301 299.45
27 | 3.248 -2.539 245.384 299.306
28 | 2.073 -1.836 262.157 322.384
29 | 1.857 -2.065 309.37 324.373
30 | 1.618 -2.266 357.344 326.473
31 | 1.255 -2.519 427.51 329.462
32 | 0.972 -2.671 481.409 332.471
33 | 2.144 -0.809 96.2531 347.359
34 | 1.940 -1.258 192.859 342.322
35 | 1.799 -1.484 242.328 342.225
36 | 1.564 -1.751 303.396 342.643
37 | 1.358 -1.940 355.532 344.432
38 | 1.499 -2.103 354.14 336.253
39 | 1.195 -2.319 416.595 338.308
40 | 1.381 -2.369 395.463 332.084
--------------------------------------------------------------------------------
/data/data_v2.txt:
--------------------------------------------------------------------------------
1 | 1.55455 -2.12014 0 2.15048 0.0943296 -0.218216 -0.971331
2 | 1.56379 -2.11334 0 2.15048 0.0943296 -0.218216 -0.971331
3 | 1.5718 -2.10489 0 2.15048 0.0943296 -0.218216 -0.971331
4 | 1.58277 -2.10041 0 2.15048 0.0943296 -0.218216 -0.971331
5 | 1.59192 -2.09349 0 2.15048 0.0943296 -0.218216 -0.971331
6 | 1.60104 -2.08652 0 2.15048 0.0943296 -0.218216 -0.971331
7 | 1.60646 -2.07477 0 2.15048 0.0943296 -0.218216 -0.971331
8 | 1.60749 -2.0575 0 2.15048 0.0943296 -0.218216 -0.971331
9 | 1.61645 -2.05046 0 2.15048 0.0943296 -0.218216 -0.971331
10 | 1.62539 -2.04339 0 2.15048 0.0943296 -0.218216 -0.971331
11 | 1.63366 -2.0355 0 2.15048 0.0943296 -0.218216 -0.971331
12 | 1.64127 -2.0268 0 2.15048 0.0943296 -0.218216 -0.971331
13 | 1.64946 -2.01884 0 2.15048 0.0943296 -0.218216 -0.971331
14 | 1.65635 -2.00931 0 2.15048 0.0943296 -0.218216 -0.971331
15 | 1.6651 -2.00206 0 2.15048 0.0943296 -0.218216 -0.971331
16 | 1.67253 -1.99325 0 2.15048 0.0943296 -0.218216 -0.971331
17 | 1.67992 -1.9844 0 2.15048 0.0943296 -0.218216 -0.971331
18 | 1.68856 -1.97706 0 2.15048 0.0943296 -0.218216 -0.971331
19 | 1.69391 -1.96588 0 2.15048 0.0943296 -0.218216 -0.971331
20 | 1.70247 -1.95847 0 2.15048 0.0943296 -0.218216 -0.971331
21 | 1.71034 -1.95027 0 2.15048 0.0943296 -0.218216 -0.971331
22 | 1.7142 -1.93755 0 2.15048 0.0943296 -0.218216 -0.971331
23 | 1.72264 -1.93005 0 2.15048 0.0943296 -0.218216 -0.971331
24 | 1.73104 -1.92252 0 2.15048 0.0943296 -0.218216 -0.971331
25 | 1.7374 -1.91272 0 2.15048 0.0943296 -0.218216 -0.971331
26 | 1.74573 -1.90512 0 2.15048 0.0943296 -0.218216 -0.971331
27 | 1.75334 -1.89675 0 2.15048 0.0943296 -0.218216 -0.971331
28 | 1.75751 -1.8847 0 2.15048 0.0943296 -0.218216 -0.971331
29 | 1.76709 -1.87847 0 2.15048 0.0943296 -0.218216 -0.971331
30 | 1.77045 -1.86566 0 2.15048 0.0943296 -0.218216 -0.971331
31 | 1.77857 -1.85792 0 2.15048 0.0943296 -0.218216 -0.971331
32 | 1.78666 -1.85014 0 2.15048 0.0943296 -0.218216 -0.971331
33 | 1.79472 -1.84233 0 2.15048 0.0943296 -0.218216 -0.971331
34 | 1.80064 -1.83234 0 2.15048 0.0943296 -0.218216 -0.971331
35 | 1.80439 -1.82021 0 2.15048 0.0943296 -0.218216 -0.971331
36 | 1.81231 -1.81231 0 2.15048 0.0943296 -0.218216 -0.971331
37 | 1.81949 -1.80369 0 2.15048 0.0943296 -0.218216 -0.971331
38 | 1.82735 -1.79573 0 2.15048 0.0943296 -0.218216 -0.971331
39 | 1.83517 -1.78774 0 2.15048 0.0943296 -0.218216 -0.971331
40 | 1.84726 -1.78388 0 2.15048 0.0943296 -0.218216 -0.971331
41 | 1.8507 -1.77166 0 2.15048 0.0943296 -0.218216 -0.971331
42 | 1.85841 -1.76356 0 2.15048 0.0943296 -0.218216 -0.971331
43 | 1.86609 -1.75544 0 2.15048 0.0943296 -0.218216 -0.971331
44 | 1.87373 -1.74728 0 2.15048 0.0943296 -0.218216 -0.971331
45 | 1.88501 -1.74248 0 2.15048 0.0943296 -0.218216 -0.971331
46 | 1.88817 -1.73019 0 2.15048 0.0943296 -0.218216 -0.971331
47 | 1.90014 -1.72597 0 2.15048 0.0943296 -0.218216 -0.971331
48 | 1.90022 -1.71097 0 2.15048 0.0943296 -0.218216 -0.971331
49 | 1.2793 -2.48391 0 2.0436 -0.695471 -0.0639804 -0.7157
50 | 1.28966 -2.47742 0 2.0436 -0.695471 -0.0639804 -0.7157
51 | 1.30139 -2.47354 0 2.0436 -0.695471 -0.0639804 -0.7157
52 | 1.31123 -2.46607 0 2.0436 -0.695471 -0.0639804 -0.7157
53 | 1.32198 -2.46033 0 2.0436 -0.695471 -0.0639804 -0.7157
54 | 1.3327 -2.45454 0 2.0436 -0.695471 -0.0639804 -0.7157
55 | 1.34388 -2.44957 0 2.0436 -0.695471 -0.0639804 -0.7157
56 | 1.35504 -2.44456 0 2.0436 -0.695471 -0.0639804 -0.7157
57 | 1.3657 -2.43863 0 2.0436 -0.695471 -0.0639804 -0.7157
58 | 1.37928 -2.43787 0 2.0436 -0.695471 -0.0639804 -0.7157
59 | 1.39189 -2.4353 0 2.0436 -0.695471 -0.0639804 -0.7157
60 | 1.406 -2.43526 0 2.0436 -0.695471 -0.0639804 -0.7157
61 | 1.41661 -2.42911 0 2.0436 -0.695471 -0.0639804 -0.7157
62 | 1.4272 -2.4229 0 2.0436 -0.695471 -0.0639804 -0.7157
63 | 1.43929 -2.41923 0 2.0436 -0.695471 -0.0639804 -0.7157
64 | 1.45292 -2.41807 0 2.0436 -0.695471 -0.0639804 -0.7157
65 | 1.46035 -2.40658 0 2.0436 -0.695471 -0.0639804 -0.7157
66 | 1.47397 -2.4053 0 2.0436 -0.695471 -0.0639804 -0.7157
67 | 1.48655 -2.40225 0 2.0436 -0.695471 -0.0639804 -0.7157
68 | 1.49861 -2.39828 0 2.0436 -0.695471 -0.0639804 -0.7157
69 | 1.51066 -2.39426 0 2.0436 -0.695471 -0.0639804 -0.7157
70 | 1.52217 -2.38933 0 2.0436 -0.695471 -0.0639804 -0.7157
71 | 1.53312 -2.3835 0 2.0436 -0.695471 -0.0639804 -0.7157
72 | 1.54514 -2.37931 0 2.0436 -0.695471 -0.0639804 -0.7157
73 | 1.55606 -2.37338 0 2.0436 -0.695471 -0.0639804 -0.7157
74 | 1.56695 -2.3674 0 2.0436 -0.695471 -0.0639804 -0.7157
75 | 1.57893 -2.36304 0 2.0436 -0.695471 -0.0639804 -0.7157
76 | 1.59034 -2.35778 0 2.0436 -0.695471 -0.0639804 -0.7157
77 | 1.60118 -2.35165 0 2.0436 -0.695471 -0.0639804 -0.7157
78 | 1.61143 -2.34464 0 2.0436 -0.695471 -0.0639804 -0.7157
79 | 1.62563 -2.34334 0 2.0436 -0.695471 -0.0639804 -0.7157
80 | 1.63641 -2.33704 0 2.0436 -0.695471 -0.0639804 -0.7157
81 | 1.65121 -2.33641 0 2.0436 -0.695471 -0.0639804 -0.7157
82 | 1.66488 -2.33407 0 2.0436 -0.695471 -0.0639804 -0.7157
83 | 1.67855 -2.33165 0 2.0436 -0.695471 -0.0639804 -0.7157
84 | 1.68988 -2.32592 0 2.0436 -0.695471 -0.0639804 -0.7157
85 | 1.70061 -2.31933 0 2.0436 -0.695471 -0.0639804 -0.7157
86 | 1.71606 -2.31913 0 2.0436 -0.695471 -0.0639804 -0.7157
87 | 1.72497 -2.31001 0 2.0436 -0.695471 -0.0639804 -0.7157
88 | 1.73985 -2.30886 0 2.0436 -0.695471 -0.0639804 -0.7157
89 | 1.75233 -2.30443 0 2.0436 -0.695471 -0.0639804 -0.7157
90 | 1.76602 -2.30152 0 2.0436 -0.695471 -0.0639804 -0.7157
91 | 1.77604 -2.29379 0 2.0436 -0.695471 -0.0639804 -0.7157
92 | 1.7885 -2.28917 0 2.0436 -0.695471 -0.0639804 -0.7157
93 | 1.80033 -2.2837 0 2.0436 -0.695471 -0.0639804 -0.7157
94 | 1.81339 -2.27974 0 2.0436 -0.695471 -0.0639804 -0.7157
95 | 1.82582 -2.27492 0 2.0436 -0.695471 -0.0639804 -0.7157
96 | 1.83887 -2.27082 0 2.0436 -0.695471 -0.0639804 -0.7157
97 | 1.85572 -2.27129 0 2.0436 -0.695471 -0.0639804 -0.7157
98 | 1.87007 -2.26858 0 2.0436 -0.695471 -0.0639804 -0.7157
99 | 1.87995 -2.2604 0 2.0436 -0.695471 -0.0639804 -0.7157
100 | 1.89301 -2.256 0 2.0436 -0.695471 -0.0639804 -0.7157
101 | 1.90865 -2.25459 0 2.0436 -0.695471 -0.0639804 -0.7157
102 | 1.92172 -2.25004 0 2.0436 -0.695471 -0.0639804 -0.7157
103 | 1.93282 -2.24315 0 2.0436 -0.695471 -0.0639804 -0.7157
104 | 1.9485 -2.24149 0 2.0436 -0.695471 -0.0639804 -0.7157
105 | 1.95892 -2.23372 0 2.0436 -0.695471 -0.0639804 -0.7157
106 | 1.97063 -2.22739 0 2.0436 -0.695471 -0.0639804 -0.7157
107 | 1.98699 -2.22624 0 2.0436 -0.695471 -0.0639804 -0.7157
108 | 2.00338 -2.22498 0 2.0436 -0.695471 -0.0639804 -0.7157
109 | 1.31639 -2.55592 0 2.05957 0.253837 -0.192455 -0.947907
110 | 1.32291 -2.54129 0 2.05957 0.253837 -0.192455 -0.947907
111 | 1.3298 -2.52752 0 2.05957 0.253837 -0.192455 -0.947907
112 | 1.33659 -2.51375 0 2.05957 0.253837 -0.192455 -0.947907
113 | 1.34328 -2.49997 0 2.05957 0.253837 -0.192455 -0.947907
114 | 1.35036 -2.48705 0 2.05957 0.253837 -0.192455 -0.947907
115 | 1.35879 -2.47675 0 2.05957 0.253837 -0.192455 -0.947907
116 | 1.36231 -2.45768 0 2.05957 0.253837 -0.192455 -0.947907
117 | 1.37254 -2.45084 0 2.05957 0.253837 -0.192455 -0.947907
118 | 1.37583 -2.43177 0 2.05957 0.253837 -0.192455 -0.947907
119 | 1.38494 -2.42314 0 2.05957 0.253837 -0.192455 -0.947907
120 | 1.3955 -2.41708 0 2.05957 0.253837 -0.192455 -0.947907
121 | 1.39898 -2.39887 0 2.05957 0.253837 -0.192455 -0.947907
122 | 1.40639 -2.38757 0 2.05957 0.253837 -0.192455 -0.947907
123 | 1.41066 -2.3711 0 2.05957 0.253837 -0.192455 -0.947907
124 | 1.41944 -2.36235 0 2.05957 0.253837 -0.192455 -0.947907
125 | 1.4287 -2.35443 0 2.05957 0.253837 -0.192455 -0.947907
126 | 1.43165 -2.33623 0 2.05957 0.253837 -0.192455 -0.947907
127 | 1.4413 -2.32911 0 2.05957 0.253837 -0.192455 -0.947907
128 | 1.4488 -2.31856 0 2.05957 0.253837 -0.192455 -0.947907
129 | 1.4509 -2.29953 0 2.05957 0.253837 -0.192455 -0.947907
130 | 1.45984 -2.29149 0 2.05957 0.253837 -0.192455 -0.947907
131 | 1.46442 -2.27669 0 2.05957 0.253837 -0.192455 -0.947907
132 | 1.4727 -2.26777 0 2.05957 0.253837 -0.192455 -0.947907
133 | 1.4771 -2.25295 0 2.05957 0.253837 -0.192455 -0.947907
134 | 1.48526 -2.24399 0 2.05957 0.253837 -0.192455 -0.947907
135 | 1.49059 -2.23083 0 2.05957 0.253837 -0.192455 -0.947907
136 | 1.49976 -2.22348 0 2.05957 0.253837 -0.192455 -0.947907
137 | 1.50494 -2.2103 0 2.05957 0.253837 -0.192455 -0.947907
138 | 1.51174 -2.19959 0 2.05957 0.253837 -0.192455 -0.947907
139 | 1.51961 -2.19051 0 2.05957 0.253837 -0.192455 -0.947907
140 | 1.52629 -2.17976 0 2.05957 0.253837 -0.192455 -0.947907
141 | 1.53117 -2.16655 0 2.05957 0.253837 -0.192455 -0.947907
142 | 1.53538 -2.15252 0 2.05957 0.253837 -0.192455 -0.947907
143 | 1.54359 -2.14418 0 2.05957 0.253837 -0.192455 -0.947907
144 | 1.55175 -2.1358 0 2.05957 0.253837 -0.192455 -0.947907
145 | 1.55692 -2.12337 0 2.05957 0.253837 -0.192455 -0.947907
146 | 1.5626 -2.11173 0 2.05957 0.253837 -0.192455 -0.947907
147 | 1.56761 -2.09928 0 2.05957 0.253837 -0.192455 -0.947907
148 | 1.57314 -2.08763 0 2.05957 0.253837 -0.192455 -0.947907
149 | 1.578 -2.07518 0 2.05957 0.253837 -0.192455 -0.947907
150 | 1.58643 -2.06748 0 2.05957 0.253837 -0.192455 -0.947907
151 | 1.59054 -2.05421 0 2.05957 0.253837 -0.192455 -0.947907
152 | 1.59949 -2.04725 0 2.05957 0.253837 -0.192455 -0.947907
153 | 1.60531 -2.03633 0 2.05957 0.253837 -0.192455 -0.947907
154 | 1.60796 -2.02148 0 2.05957 0.253837 -0.192455 -0.947907
155 | 1.61426 -2.01132 0 2.05957 0.253837 -0.192455 -0.947907
156 | 1.62302 -2.00426 0 2.05957 0.253837 -0.192455 -0.947907
157 | 1.63048 -1.99561 0 2.05957 0.253837 -0.192455 -0.947907
158 | 1.63727 -1.98616 0 2.05957 0.253837 -0.192455 -0.947907
159 | 1.64272 -1.97515 0 2.05957 0.253837 -0.192455 -0.947907
160 | 1.64682 -1.96261 0 2.05957 0.253837 -0.192455 -0.947907
161 | 1.6502 -1.9493 0 2.05957 0.253837 -0.192455 -0.947907
162 | 1.65544 -1.93827 0 2.05957 0.253837 -0.192455 -0.947907
163 | 1.65997 -1.92649 0 2.05957 0.253837 -0.192455 -0.947907
164 | 1.66836 -1.91923 0 2.05957 0.253837 -0.192455 -0.947907
165 | 1.67672 -1.91193 0 2.05957 0.253837 -0.192455 -0.947907
166 | 1.68504 -1.90459 0 2.05957 0.253837 -0.192455 -0.947907
167 | 1.69334 -1.89722 0 2.05957 0.253837 -0.192455 -0.947907
168 | 1.70428 -1.89279 0 2.05957 0.253837 -0.192455 -0.947907
169 | 1.26831 -2.46258 0 2.07892 -0.704129 -0.0169926 -0.709869
170 | 1.2832 -2.465 0 2.07892 -0.704129 -0.0169926 -0.709869
171 | 1.29394 -2.45938 0 2.07892 -0.704129 -0.0169926 -0.709869
172 | 1.30419 -2.45283 0 2.07892 -0.704129 -0.0169926 -0.709869
173 | 1.31488 -2.44711 0 2.07892 -0.704129 -0.0169926 -0.709869
174 | 1.3265 -2.44311 0 2.07892 -0.704129 -0.0169926 -0.709869
175 | 1.33811 -2.43905 0 2.07892 -0.704129 -0.0169926 -0.709869
176 | 1.35116 -2.43757 0 2.07892 -0.704129 -0.0169926 -0.709869
177 | 1.36276 -2.43339 0 2.07892 -0.704129 -0.0169926 -0.709869
178 | 1.37583 -2.43177 0 2.07892 -0.704129 -0.0169926 -0.709869
179 | 1.3899 -2.43182 0 2.07892 -0.704129 -0.0169926 -0.709869
180 | 1.403 -2.43007 0 2.07892 -0.704129 -0.0169926 -0.709869
181 | 1.41661 -2.42911 0 2.07892 -0.704129 -0.0169926 -0.709869
182 | 1.42923 -2.42635 0 2.07892 -0.704129 -0.0169926 -0.709869
183 | 1.44082 -2.42181 0 2.07892 -0.704129 -0.0169926 -0.709869
184 | 1.45653 -2.42407 0 2.07892 -0.704129 -0.0169926 -0.709869
185 | 1.46709 -2.41769 0 2.07892 -0.704129 -0.0169926 -0.709869
186 | 1.47972 -2.41468 0 2.07892 -0.704129 -0.0169926 -0.709869
187 | 1.49392 -2.41415 0 2.07892 -0.704129 -0.0169926 -0.709869
188 | 1.50444 -2.40761 0 2.07892 -0.704129 -0.0169926 -0.709869
189 | 1.51653 -2.40356 0 2.07892 -0.704129 -0.0169926 -0.709869
190 | 1.52862 -2.39945 0 2.07892 -0.704129 -0.0169926 -0.709869
191 | 1.5434 -2.39948 0 2.07892 -0.704129 -0.0169926 -0.709869
192 | 1.5544 -2.39357 0 2.07892 -0.704129 -0.0169926 -0.709869
193 | 1.56647 -2.38927 0 2.07892 -0.704129 -0.0169926 -0.709869
194 | 1.5802 -2.38742 0 2.07892 -0.704129 -0.0169926 -0.709869
195 | 1.59282 -2.38382 0 2.07892 -0.704129 -0.0169926 -0.709869
196 | 1.60936 -2.38597 0 2.07892 -0.704129 -0.0169926 -0.709869
197 | 1.62369 -2.38471 0 2.07892 -0.704129 -0.0169926 -0.709869
198 | 1.64031 -2.38667 0 2.07892 -0.704129 -0.0169926 -0.709869
199 | 1.65584 -2.38688 0 2.07892 -0.704129 -0.0169926 -0.709869
200 | 1.66796 -2.38209 0 2.07892 -0.704129 -0.0169926 -0.709869
201 | 1.68238 -2.38051 0 2.07892 -0.704129 -0.0169926 -0.709869
202 | 1.69681 -2.37885 0 2.07892 -0.704129 -0.0169926 -0.709869
203 | 1.71185 -2.37791 0 2.07892 -0.704129 -0.0169926 -0.709869
204 | 1.72221 -2.37042 0 2.07892 -0.704129 -0.0169926 -0.709869
205 | 1.7349 -2.36611 0 2.07892 -0.704129 -0.0169926 -0.709869
206 | 1.74878 -2.36334 0 2.07892 -0.704129 -0.0169926 -0.709869
207 | 1.76027 -2.35729 0 2.07892 -0.704129 -0.0169926 -0.709869
208 | 1.77776 -2.35917 0 2.07892 -0.704129 -0.0169926 -0.709869
209 | 1.79409 -2.35935 0 2.07892 -0.704129 -0.0169926 -0.709869
210 | 1.8068 -2.35467 0 2.07892 -0.704129 -0.0169926 -0.709869
211 | 1.8189 -2.34914 0 2.07892 -0.704129 -0.0169926 -0.709869
212 | 1.83344 -2.3467 0 2.07892 -0.704129 -0.0169926 -0.709869
213 | 1.84676 -2.3426 0 2.07892 -0.704129 -0.0169926 -0.709869
214 | 1.86194 -2.34078 0 2.07892 -0.704129 -0.0169926 -0.709869
215 | 1.87965 -2.34199 0 2.07892 -0.704129 -0.0169926 -0.709869
216 | 1.89488 -2.33999 0 2.07892 -0.704129 -0.0169926 -0.709869
217 | 1.90761 -2.33479 0 2.07892 -0.704129 -0.0169926 -0.709869
218 | 1.92541 -2.33571 0 2.07892 -0.704129 -0.0169926 -0.709869
219 | 1.93942 -2.3319 0 2.07892 -0.704129 -0.0169926 -0.709869
220 | 1.95665 -2.33184 0 2.07892 -0.704129 -0.0169926 -0.709869
221 | 9.5786 -10.6381 0 2.07892 -0.704129 -0.0169926 -0.709869
222 | 1.96785 -2.09188 0 2.3731 0.00425573 -0.000523289 -0.999991
223 | 1.97764 -2.084 0 2.3731 0.00425573 -0.000523289 -0.999991
224 | 1.98603 -2.07463 0 2.3731 0.00425573 -0.000523289 -0.999991
225 | 1.98603 -2.05659 0 2.3731 0.00425573 -0.000523289 -0.999991
226 | 1.99149 -2.04433 0 2.3731 0.00425573 -0.000523289 -0.999991
227 | 2.0004 -2.03562 0 2.3731 0.00425573 -0.000523289 -0.999991
228 | 2.01137 -2.029 0 2.3731 0.00425573 -0.000523289 -0.999991
229 | 2.02162 -2.02162 0 2.3731 0.00425573 -0.000523289 -0.999991
230 | 2.03184 -2.01419 0 2.3731 0.00425573 -0.000523289 -0.999991
231 | 2.04061 -2.0053 0 2.3731 0.00425573 -0.000523289 -0.999991
232 | 2.04719 -1.99429 0 2.3731 0.00425573 -0.000523289 -0.999991
233 | 2.0494 -1.97908 0 2.3731 0.00425573 -0.000523289 -0.999991
234 | 2.05729 -1.96943 0 2.3731 0.00425573 -0.000523289 -0.999991
235 | 2.06587 -1.96043 0 2.3731 0.00425573 -0.000523289 -0.999991
236 | 2.07149 -1.94866 0 2.3731 0.00425573 -0.000523289 -0.999991
237 | 2.07997 -1.9396 0 2.3731 0.00425573 -0.000523289 -0.999991
238 | 2.08548 -1.92779 0 2.3731 0.00425573 -0.000523289 -0.999991
239 | 2.09387 -1.91868 0 2.3731 0.00425573 -0.000523289 -0.999991
240 | 2.10222 -1.90952 0 2.3731 0.00425573 -0.000523289 -0.999991
241 | 2.10905 -1.89899 0 2.3731 0.00425573 -0.000523289 -0.999991
242 | 2.11433 -1.88711 0 2.3731 0.00425573 -0.000523289 -0.999991
243 | 2.12254 -1.87787 0 2.3731 0.00425573 -0.000523289 -0.999991
244 | 2.13071 -1.86859 0 2.3731 0.00425573 -0.000523289 -0.999991
245 | 2.1396 -1.85993 0 2.3731 0.00425573 -0.000523289 -0.999991
246 | 2.1477 -1.85057 0 2.3731 0.00425573 -0.000523289 -0.999991
247 | 2.15879 -1.84378 0 2.3731 0.00425573 -0.000523289 -0.999991
248 | 2.16376 -1.83176 0 2.3731 0.00425573 -0.000523289 -0.999991
249 | 2.17097 -1.82166 0 2.3731 0.00425573 -0.000523289 -0.999991
250 | 2.17428 -1.80833 0 2.3731 0.00425573 -0.000523289 -0.999991
251 | 2.18138 -1.79819 0 2.3731 0.00425573 -0.000523289 -0.999991
252 | 2.18766 -1.78739 0 2.3731 0.00425573 -0.000523289 -0.999991
253 | 2.19699 -1.77909 0 2.3731 0.00425573 -0.000523289 -0.999991
254 | 2.20551 -1.77011 0 2.3731 0.00425573 -0.000523289 -0.999991
255 | 2.21322 -1.76047 0 2.3731 0.00425573 -0.000523289 -0.999991
256 | 2.22088 -1.7508 0 2.3731 0.00425573 -0.000523289 -0.999991
257 | 2.22692 -1.73986 0 2.3731 0.00425573 -0.000523289 -0.999991
258 | 2.23133 -1.72768 0 2.3731 0.00425573 -0.000523289 -0.999991
259 | 2.23488 -1.71488 0 2.3731 0.00425573 -0.000523289 -0.999991
260 | 2.24234 -1.70511 0 2.3731 0.00425573 -0.000523289 -0.999991
261 | 2.25135 -1.69652 0 2.3731 0.00425573 -0.000523289 -0.999991
262 | 2.26274 -1.68967 0 2.3731 0.00425573 -0.000523289 -0.999991
263 | 2.27331 -1.68216 0 2.3731 0.00425573 -0.000523289 -0.999991
264 | 2.2774 -1.66986 0 2.3731 0.00425573 -0.000523289 -0.999991
265 | 2.28466 -1.65991 0 2.3731 0.00425573 -0.000523289 -0.999991
266 | 2.28702 -1.64642 0 2.3731 0.00425573 -0.000523289 -0.999991
267 | 2.29906 -1.63991 0 2.3731 0.00425573 -0.000523289 -0.999991
268 | 2.30375 -1.62813 0 2.3731 0.00425573 -0.000523289 -0.999991
269 | 2.31574 -1.6215 0 2.3731 0.00425573 -0.000523289 -0.999991
270 |
--------------------------------------------------------------------------------
/data/image00.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/data/image00.png
--------------------------------------------------------------------------------
/data/image_points.txt:
--------------------------------------------------------------------------------
1 | 312.596 301.265
2 | 239.083 301.228
3 | 224.351 300.087
4 | 111.387 298.426
5 |
--------------------------------------------------------------------------------
/data/image_test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/data/image_test.png
--------------------------------------------------------------------------------
/data/laser_points.txt:
--------------------------------------------------------------------------------
1 | 2.712 -2.958
2 | 3.200 -2.412
3 | 3.371 -2.383
4 | 3.892 -1.435
5 | 4.091 -1.448
6 | 3.934 -1.856
7 | 3.595 -2.448
8 | 3.623 -2.706
9 | 3.972 -2.177
10 | 4.402 -1.177
11 | 4.474 -0.933
12 | 4.580 -1.186
13 | 4.492 -1.481
14 | 4.535 -1.344
15 | 1.547 -4.372
16 | 2.290 -4.001
17 | 2.731 -3.694
18 | 3.452 -1.685
19 | 3.364 -1.845
20 | 3.727 -1.156
21 | 3.416 -1.852
22 | 3.662 -1.351
23 | 3.861 -1.465
24 | 3.957 -1.227
25 | 3.768 -1.679
26 | 3.649 -1.921
27 | 3.248 -2.539
28 | 2.073 -1.836
29 | 1.857 -2.065
30 | 1.618 -2.266
31 | 1.255 -2.519
32 | 0.972 -2.671
33 | 2.144 -0.809
34 | 1.940 -1.258
35 | 1.799 -1.484
36 | 1.564 -1.751
37 | 1.358 -1.940
38 | 1.499 -2.103
39 | 1.195 -2.319
40 | 1.381 -2.369
--------------------------------------------------------------------------------
/data/laser_test_points.txt:
--------------------------------------------------------------------------------
1 | -0.215668 -0.215668 0
2 | -2.42463 -2.44588 0
3 | -2.41393 -2.45643 0
4 | -2.16873 -2.22627 0
5 | -1.93949 -2.0084 0
6 | -1.60777 -1.6795 0
7 | -1.49992 -1.58059 0
8 | -1.46012 -1.55216 0
9 | -1.45266 -1.55778 0
10 | -0.126936 -0.137318 0
11 | -0.124309 -0.135659 0
12 | -0.123715 -0.1362 0
13 | -0.122451 -0.135996 0
14 | -0.120525 -0.135036 0
15 | -0.119934 -0.135561 0
16 | -0.119342 -0.136083 0
17 | -0.1299 -0.149432 0
18 | -0.129899 -0.150755 0
19 | -0.133137 -0.155883 0
20 | -0.132455 -0.156463 0
21 | -0.125344 -0.149379 0
22 | -0.124691 -0.149924 0
23 | -0.131032 -0.158955 0
24 | -0.134134 -0.164171 0
25 | -0.133416 -0.164755 0
26 | -0.129566 -0.161436 0
27 | -0.127615 -0.160435 0
28 | -0.128152 -0.162561 0
29 | -0.123132 -0.157602 0
30 | -0.122443 -0.158138 0
31 | -0.119317 -0.155497 0
32 | -0.118638 -0.156016 0
33 | -0.117956 -0.156533 0
34 | -0.116075 -0.155443 0
35 | -0.113611 -0.153537 0
36 | -0.110575 -0.150805 0
37 | -0.109916 -0.151286 0
38 | -0.106918 -0.148518 0
39 | -0.106269 -0.148983 0
40 | -0.105618 -0.149445 0
41 | -0.106685 -0.152362 0
42 | -0.106589 -0.153648 0
43 | -0.107051 -0.15576 0
44 | -0.105245 -0.154572 0
45 | -0.100096 -0.148398 0
46 | -0.0988915 -0.148002 0
47 | -0.0982448 -0.148432 0
48 | -0.0986928 -0.150532 0
49 | -0.0985797 -0.151799 0
50 | -0.0979164 -0.152228 0
51 | -0.0934901 -0.14675 0
52 | -0.0928489 -0.147157 0
53 | -0.0847871 -0.135688 0
54 | -0.0841942 -0.136056 0
55 | -0.0851673 -0.13898 0
56 | -0.0850788 -0.140206 0
57 | -0.0844662 -0.140575 0
58 | -0.0812956 -0.136646 0
59 | -0.0786684 -0.133553 0
60 | -0.078085 -0.133895 0
61 | -0.0765 -0.132502 0
62 | -0.0769136 -0.134571 0
63 | -0.0753408 -0.133164 0
64 | -0.0757363 -0.135237 0
65 | -0.0751455 -0.135566 0
66 | -0.0745533 -0.135893 0
67 | -0.0734824 -0.135338 0
68 | -0.0719446 -0.133895 0
69 | -0.066665 -0.125379 0
70 | -0.0647204 -0.123013 0
71 | -0.0623361 -0.119746 0
72 | -0.061813 -0.120017 0
73 | -0.0612887 -0.120286 0
74 | -0.0625637 -0.124124 0
75 | -0.0624677 -0.125291 0
76 | -0.0619204 -0.125562 0
77 | -0.0591801 -0.121337 0
78 | -0.0586501 -0.121594 0
79 | -0.0594105 -0.124557 0
80 | -0.0601462 -0.127528 0
81 | -0.0612796 -0.131415 0
82 | -0.0607057 -0.131681 0
83 | -0.0601305 -0.131944 0
84 | -0.0587328 -0.130382 0
85 | -0.0573499 -0.12881 0
86 | -0.055579 -0.126313 0
87 | -0.0534324 -0.122886 0
88 | -0.0528957 -0.123118 0
89 | -0.052358 -0.123348 0
90 | -0.0518193 -0.123575 0
91 | -0.0505142 -0.121952 0
92 | -0.049603 -0.121246 0
93 | -0.0486989 -0.120534 0
94 | -0.048543 -0.121674 0
95 | -0.0491112 -0.124676 0
96 | -0.0485667 -0.124889 0
97 | -0.0483797 -0.126033 0
98 | -0.0457035 -0.120632 0
99 | -0.0465776 -0.124577 0
100 | -0.0456875 -0.123841 0
101 | -0.0451467 -0.124039 0
102 | -0.0419017 -0.116706 0
103 | -0.0407244 -0.115002 0
104 | -0.0402223 -0.115179 0
105 | -0.0397193 -0.115353 0
106 | -0.0398585 -0.117419 0
107 | -0.0396631 -0.11854 0
108 | -0.040085 -0.121561 0
109 | -0.0395542 -0.121735 0
110 | -0.0390226 -0.121907 0
111 | -0.0369868 -0.117307 0
112 | -0.0385504 -0.124153 0
113 | -0.0397626 -0.130057 0
114 | -0.0391947 -0.13023 0
115 | -0.0428863 -0.144782 0
116 | -0.0439332 -0.150728 0
117 | -0.0452045 -0.157647 0
118 | -0.0469592 -0.166505 0
119 | -0.0497063 -0.179235 0
120 | -0.0531323 -0.194887 0
121 | -0.0522815 -0.195117 0
122 | -0.0318252 -0.120881 0
123 | -0.0312975 -0.121018 0
124 | -0.0347076 -0.136662 0
125 | -0.034111 -0.136812 0
126 | -0.0254324 -0.103934 0
127 | -0.0245118 -0.102099 0
128 | -0.0245244 -0.104152 0
129 | -0.0242947 -0.105232 0
130 | -0.0238353 -0.105337 0
131 | -0.0190467 -0.085914 0
132 | -0.0186716 -0.0859963 0
133 | -1.04392 -4.91128 0
134 | -1.02513 -4.92851 0
135 | -1.03133 -5.06915 0
136 | -1.07436 -5.40118 0
137 | -1.05079 -5.40582 0
138 | -0.858384 -4.52124 0
139 | -0.838648 -4.52494 0
140 | -0.822811 -4.5502 0
141 | -0.958885 -5.43811 0
142 | -0.935148 -5.44224 0
143 | -0.909412 -5.43443 0
144 | -0.751793 -4.61618 0
145 | -0.731644 -4.61942 0
146 | -0.837439 -5.44093 0
147 | -0.813691 -5.44453 0
148 | -0.786196 -5.4223 0
149 | -0.744298 -5.29595 0
150 | -0.719699 -5.28825 0
151 | -0.695052 -5.27944 0
152 | -0.533317 -4.19221 0
153 | -0.51502 -4.1945 0
154 | -0.497536 -4.20366 0
155 | -0.479189 -4.20579 0
156 | -0.187251 -1.70978 0
157 | -0.17958 -1.70859 0
158 | -0.172123 -1.70936 0
159 | -0.164759 -1.71109 0
160 | -0.157657 -1.71577 0
161 | -0.150779 -1.72342 0
162 | -0.143589 -1.72804 0
163 | -0.392452 -4.98658 0
164 | -0.384845 -5.17872 0
165 | -0.363013 -5.19132 0
166 | -0.340358 -5.19286 0
167 | -0.317514 -5.1913 0
168 | -0.294632 -5.18864 0
169 | -0.271938 -5.18888 0
170 | -0.248815 -5.18003 0
171 | -0.225992 -5.17607 0
172 | -0.202934 -5.16502 0
173 | -0.179977 -5.15386 0
174 | -0.157426 -5.1526 0
175 | -0.134811 -5.14824 0
176 | -0.112238 -5.14378 0
177 | -0.0828117 -4.74428 0
178 | -0.0159693 -1.2199 0
179 | -0.0105853 -1.21295 0
180 | -0.00529271 -1.21299 0
181 | -1.46123e-08 -1.213 0
182 | 0.0053145 -1.21799 0
183 | 0.0106638 -1.22195 0
184 | 0.0161264 -1.23189 0
185 | 0.0215363 -1.23381 0
186 | 0.026985 -1.23671 0
187 | 0.133031 -5.08026 0
188 | 0.155197 -5.07963 0
189 | 0.177185 -5.07391 0
190 | 0.199165 -5.06909 0
191 | 0.221107 -5.06418 0
192 | 0.242769 -5.05417 0
193 | 0.264506 -5.04707 0
194 | 0.286128 -5.03888 0
195 | 0.308051 -5.03659 0
196 | 0.329959 -5.0342 0
197 | 0.351782 -5.03072 0
198 | 0.372914 -5.01816 0
199 | 0.394806 -5.01649 0
200 | 0.416028 -5.00675 0
201 | 0.43787 -5.00488 0
202 | 0.459155 -4.99695 0
203 | 0.480379 -4.98893 0
204 | 0.502142 -4.98678 0
205 | 0.524837 -4.99349 0
206 | 0.54662 -4.99116 0
207 | 0.567601 -4.98177 0
208 | 0.588745 -4.97428 0
209 | 0.576686 -4.69673 0
210 | 0.597173 -4.69417 0
211 | 0.651978 -4.95227 0
212 | 0.67358 -4.94938 0
213 | 0.69517 -4.94639 0
214 | 0.717607 -4.94925 0
215 | 0.739195 -4.94607 0
216 | 0.760313 -4.93983 0
217 | 0.781703 -4.93548 0
218 | 0.802909 -4.93005 0
219 | 0.824413 -4.9265 0
220 | 0.845562 -4.92088 0
221 | 0.865983 -4.91124 0
222 | 0.886693 -4.90347 0
223 | 0.907897 -4.89858 0
224 | 0.929263 -4.89457 0
225 | 0.95061 -4.89047 0
226 | 0.981109 -4.93237 0
227 | 1.03592 -5.09169 0
228 | 1.05812 -5.08712 0
229 | 1.07969 -5.07952 0
230 | 1.10163 -5.07378 0
231 | 1.12332 -5.06698 0
232 | 1.14498 -5.06008 0
233 | 1.16705 -5.05503 0
234 | 1.18244 -5.02166 0
235 | 1.19921 -4.99506 0
236 | 1.04748 -4.2807 0
237 | 1.06615 -4.27609 0
238 | 1.27434 -5.01771 0
239 | 1.29622 -5.0121 0
240 | 1.31782 -5.00543 0
241 | 1.14269 -4.26456 0
242 | 1.16128 -4.25954 0
243 | 1.14806 -4.13976 0
244 | 1.08658 -3.85271 0
245 | 1.10338 -3.84793 0
246 | 1.12323 -3.85364 0
247 | 1.14146 -3.8535 0
248 | 1.15855 -3.84944 0
249 | 1.17592 -3.84626 0
250 | 1.19328 -3.843 0
251 | 1.21004 -3.83776 0
252 | 1.22769 -3.8353 0
253 | 1.24565 -3.83371 0
254 | 1.26518 -3.83678 0
255 | 1.28381 -3.83692 0
256 | 1.30119 -3.83317 0
257 | 1.32018 -3.83408 0
258 | 1.3369 -3.82828 0
259 | 1.35592 -3.82901 0
260 | 1.37262 -3.82306 0
261 | 1.38929 -3.81703 0
262 | 1.40731 -3.81469 0
263 | 1.42429 -3.80945 0
264 | 1.44338 -3.80974 0
265 | 1.46035 -3.80434 0
266 | 1.47911 -3.80352 0
267 | 1.49606 -3.79796 0
268 | 1.51521 -3.7979 0
269 | 1.53326 -3.79496 0
270 | 1.55246 -3.79472 0
271 | 1.56938 -3.78883 0
272 | 1.58706 -3.78471 0
273 | 1.6063 -3.7842 0
274 | 1.62634 -3.78542 0
275 | 1.64285 -3.77829 0
276 | 1.66334 -3.78024 0
277 | 1.6847 -3.78391 0
278 | 1.71763 -3.81299 0
279 | 1.74047 -3.81911 0
280 | 2.18582 -4.74142 0
281 | 2.21621 -4.75268 0
282 | 2.23906 -4.74749 0
283 | 2.26018 -4.73857 0
284 | 2.28388 -4.73497 0
285 | 2.30452 -4.72496 0
286 | 2.32821 -4.72114 0
287 | 2.35235 -4.71809 0
288 | 2.37292 -4.70778 0
289 | 2.39162 -4.69382 0
290 | 2.41208 -4.68334 0
291 | 2.43526 -4.6781 0
292 | 2.45565 -4.66743 0
293 | 2.4497 -4.60722 0
294 | 2.46978 -4.59649 0
295 | 2.50604 -4.61555 0
296 | 2.54106 -4.63175 0
297 | 2.56125 -4.62062 0
298 | 2.57308 -4.59456 0
299 | 2.27795 -4.02627 0
300 | 2.2955 -4.01629 0
301 | 2.645 -4.58127 0
302 | 2.66698 -4.57315 0
303 | 2.68691 -4.56146 0
304 | 2.70832 -4.55228 0
305 | 2.72816 -4.54042 0
306 | 2.7412 -4.51735 0
307 | 2.73842 -4.46869 0
308 | 2.47321 -3.99666 0
309 | 2.45406 -3.92731 0
310 | 2.47117 -3.91657 0
311 | 2.84339 -4.46323 0
312 | 2.87203 -4.46508 0
313 | 2.89149 -4.4525 0
314 | 2.91637 -4.44821 0
315 | 2.92582 -4.42043 0
316 | 2.94341 -4.40513 0
317 | 2.9531 -4.37815 0
318 | 2.95754 -4.34373 0
319 | 2.97646 -4.33078 0
320 | 3.01699 -4.34898 0
321 | 3.03594 -4.33577 0
322 | 3.05656 -4.32493 0
323 | 3.06205 -4.29283 0
324 | 3.08075 -4.27943 0
325 | 3.09939 -4.26595 0
326 | 3.11088 -4.24271 0
327 | 3.11806 -4.21382 0
328 | 3.11907 -4.17694 0
329 | 3.1162 -4.13533 0
330 | 3.00347 -3.94976 0
331 | 2.99389 -3.90171 0
332 | 3.01088 -3.88861 0
333 | 3.20452 -4.1016 0
334 | 3.22919 -4.09621 0
335 | 3.26633 -4.10635 0
336 | 3.28422 -4.09205 0
337 | 3.30016 -4.07535 0
338 | 3.30525 -4.04543 0
339 | 3.28089 -3.98004 0
340 | 3.29823 -3.96569 0
341 | 3.311 -3.94589 0
342 | 3.34175 -3.94744 0
343 | 3.33037 -3.89936 0
344 | 3.34735 -3.88479 0
345 | 3.32491 -3.82487 0
346 | 3.32574 -3.79228 0
347 | 3.33629 -3.77099 0
348 | 3.35271 -3.7564 0
349 | 3.35168 -3.72241 0
350 | 3.36789 -3.70775 0
351 | 3.38403 -3.69302 0
352 | 3.40894 -3.68777 0
353 | 3.38544 -3.63044 0
354 | 3.36836 -3.58067 0
355 | 1.81037 -1.90773 0
356 | 1.80623 -1.88681 0
357 | 1.81236 -1.87676 0
358 | 1.82263 -1.87098 0
359 | 1.83848 -1.87086 0
360 | 1.84874 -1.86495 0
361 | 1.86888 -1.86888 0
362 | 1.88199 -1.86564 0
363 | 1.89939 -1.86652 0
364 | 1.91897 -1.86938 0
365 | 1.9343 -1.86794 0
366 | 1.94316 -1.86017 0
367 | 1.96141 -1.86131 0
368 | 1.98554 -1.86781 0
369 | 1.9966 -1.86186 0
370 | 2.01718 -1.86467 0
371 | 2.02678 -1.8572 0
372 | 2.04744 -1.85977 0
373 | 2.06371 -1.85818 0
374 | 2.0718 -1.84915 0
375 | 2.0791 -1.83943 0
376 | 2.08485 -1.82837 0
377 | 2.07847 -1.80679 0
378 | 2.08255 -1.79444 0
379 | 2.07287 -1.7704 0
380 | 2.07523 -1.75681 0
381 | 2.07368 -1.74003 0
382 | 2.07664 -1.72712 0
383 | 2.07104 -1.70723 0
384 | 2.0777 -1.69755 0
385 | 2.06799 -1.67462 0
386 | 2.07371 -1.66433 0
387 | 2.06217 -1.64033 0
388 | 2.06538 -1.62822 0
389 | 2.06301 -1.6118 0
390 | 2.06449 -1.5985 0
391 | 2.06589 -1.58521 0
392 | 2.06483 -1.57013 0
393 | 2.07166 -1.56111 0
394 | 2.08646 -1.55804 0
395 | 2.09565 -1.5507 0
396 | 3.66448 -2.68691 0
397 | 3.70611 -2.69264 0
398 | 3.71782 -2.67645 0
399 | 3.73923 -2.66717 0
400 | 3.7639 -2.66006 0
401 | 3.77547 -2.64361 0
402 | 3.86749 -2.68297 0
403 | 3.88246 -2.66834 0
404 | 3.89076 -2.64912 0
405 | 3.89482 -2.62709 0
406 | 3.80896 -2.54507 0
407 | 3.76833 -2.4942 0
408 | 3.77249 -2.47335 0
409 | 3.78324 -2.45687 0
410 | 3.79309 -2.4398 0
411 | 3.96647 -2.52692 0
412 | 3.81508 -2.40714 0
413 | 3.82555 -2.39047 0
414 | 3.83424 -2.3727 0
415 | 3.84455 -2.35595 0
416 | 4.00013 -2.42734 0
417 | 4.01069 -2.40986 0
418 | 3.98421 -2.37035 0
419 | 3.88595 -2.289 0
420 | 3.8959 -2.27202 0
421 | 3.89798 -2.2505 0
422 | 3.90776 -2.23347 0
423 | 3.90616 -2.21 0
424 | 3.94543 -2.20955 0
425 | 3.93491 -2.18116 0
426 | 3.95579 -2.17022 0
427 | 3.9538 -2.14674 0
428 | 3.94022 -2.11716 0
429 | 3.92559 -2.08727 0
430 | 3.9205 -2.06267 0
431 | 3.91793 -2.03954 0
432 | 3.92501 -2.02151 0
433 | 3.91241 -1.99347 0
434 | 3.92107 -1.97638 0
435 | 3.92966 -1.95925 0
436 | 3.91575 -1.93103 0
437 | 3.92413 -1.91393 0
438 | 3.94326 -1.902 0
439 | 3.95513 -1.8865 0
440 | 3.98141 -1.87776 0
441 | 3.99229 -1.86163 0
442 | 4.00037 -1.8442 0
443 | 3.99382 -1.82009 0
444 | 4.00172 -1.80265 0
445 | 4.00772 -1.78435 0
446 | 4.01913 -1.76846 0
447 | 4.02681 -1.75091 0
448 | 4.04084 -1.73608 0
449 | 4.04838 -1.71844 0
450 | 4.05584 -1.70075 0
451 | 4.06415 -1.68342 0
452 | 4.07886 -1.6687 0
453 | 4.0861 -1.65089 0
454 | 4.08398 -1.62934 0
455 | 4.09105 -1.61151 0
456 | 4.10549 -1.59654 0
457 | 4.11802 -1.58076 0
458 | 4.12862 -1.5642 0
459 | 4.13541 -1.54617 0
460 | 4.14118 -1.52776 0
461 | 4.1478 -1.50968 0
462 | 4.15059 -1.49021 0
463 | 4.15705 -1.47209 0
464 | 4.16343 -1.45394 0
465 | 4.16596 -1.43445 0
466 | 4.17217 -1.41626 0
467 | 4.18685 -1.4009 0
468 | 4.19672 -1.38387 0
469 | 4.20272 -1.36555 0
470 | 4.19626 -1.34323 0
471 | 4.19349 -1.3222 0
472 | 4.20209 -1.30478 0
473 | 4.20774 -1.28644 0
474 | 4.2181 -1.2695 0
475 | 4.23415 -1.25421 0
476 | 4.22998 -1.23293 0
477 | 4.23532 -1.21446 0
478 | 4.21844 -1.18972 0
479 | 4.21588 -1.16917 0
480 | 4.22577 -1.15208 0
481 | 4.23076 -1.13363 0
482 | 4.23566 -1.11516 0
483 | 4.23661 -1.09566 0
484 | 4.23748 -1.07618 0
485 | 4.22952 -1.05454 0
486 | 4.23311 -1.03584 0
487 | 4.22981 -1.01549 0
488 | 4.22155 -0.994042 0
489 | 4.22 -0.974263 0
490 | 4.22421 -0.955841 0
491 | 4.22834 -0.9374 0
492 | 4.21773 -0.915759 0
493 | 4.21777 -0.896515 0
494 | 4.21969 -0.877696 0
495 | 4.21956 -0.858478 0
496 | 4.22326 -0.840059 0
497 | 4.22689 -0.821624 0
498 | 4.2265 -0.802427 0
499 | 4.22996 -0.783977 0
500 | 4.23334 -0.765513 0
501 | 4.23861 -0.747382 0
502 | 4.25859 -0.731759 0
503 | 4.26667 -0.713996 0
504 | 4.26975 -0.695372 0
505 | 4.27965 -0.677831 0
506 | 4.28257 -0.659151 0
507 | 4.28145 -0.639867 0
508 | 4.2842 -0.62118 0
509 | 4.28885 -0.602759 0
510 | 4.29144 -0.584039 0
511 | 2.32196 -0.305692 0
512 | 2.31038 -0.293917 0
513 | 2.31164 -0.283834 0
514 | 2.31286 -0.273745 0
515 | 4.3439 -0.494925 0
516 | 4.35496 -0.476946 0
517 | 4.36197 -0.458462 0
518 | 4.35896 -0.438924 0
519 | 4.36581 -0.42038 0
520 | 4.36561 -0.401143 0
521 | 4.37529 -0.382788 0
522 | 4.37692 -0.363694 0
523 | 4.37846 -0.344592 0
524 | 4.38092 -0.325559 0
525 | 4.3823 -0.30644 0
526 | 4.38359 -0.287316 0
527 | 2.89659 -0.177163 0
528 | 2.86938 -0.162935 0
529 | 2.74723 -0.143976 0
530 | 2.74783 -0.131988 0
531 | 2.74938 -0.120041 0
532 | 4.36163 -0.171369 0
533 | 4.36234 -0.152336 0
534 | 4.35997 -0.133209 0
535 | 4.35651 -0.114079 0
536 | 4.35696 -0.0950694 0
537 | 4.36833 -0.0762497 0
538 | 4.36863 -0.0571885 0
539 | 3.33787 -0.0291293 0
540 | 3.33797 -0.0145648 0
541 | 3.348 -8.10698e-08 0
542 | 4.35896 0.0190196 0
543 | 4.36383 0.0380825 0
544 | 4.35863 0.0570574 0
545 | 4.35534 0.0760226 0
546 | 4.35196 0.0949601 0
547 | 4.34151 0.113686 0
548 | 4.33498 0.132445 0
549 | 4.33236 0.151289 0
550 | 4.32766 0.170034 0
551 | 4.33087 0.18909 0
552 | 4.32302 0.207649 0
553 | 4.31108 0.225934 0
554 | 4.31006 0.244743 0
555 | 4.30296 0.26318 0
556 | 2.1444 0.140551 0
557 | 2.1288 0.14886 0
558 | 2.12813 0.158147 0
559 | 2.13241 0.167824 0
560 | 2.13165 0.177127 0
561 | 2.13086 0.186426 0
562 | 2.73548 0.251355 0
563 | 2.73435 0.263288 0
564 | 2.73318 0.275217 0
565 | 2.72598 0.286512 0
566 | 2.72471 0.298404 0
567 | 2.72338 0.31029 0
568 | 2.71902 0.321817 0
569 | 2.63124 0.323076 0
570 | 2.61889 0.333165 0
571 | 2.6194 0.34485 0
572 | 2.61589 0.356006 0
573 | 2.61629 0.367695 0
574 | 3.1847 0.461759 0
575 | 3.21628 0.480676 0
576 | 4.26577 0.656564 0
577 | 4.26286 0.675171 0
578 | 4.25593 0.693122 0
579 | 4.25188 0.71152 0
580 | 4.24873 0.730066 0
581 | 4.24945 0.749292 0
582 | 4.25401 0.76925 0
583 | 4.25061 0.787804 0
584 | 4.24026 0.805038 0
585 | 4.22983 0.822196 0
586 | 4.23013 0.841424 0
587 | 4.22642 0.859874 0
588 | 4.22262 0.878307 0
589 | 4.21875 0.896723 0
590 | 4.20209 0.912364 0
591 | 4.19807 0.93069 0
592 | 4.20665 0.951868 0
593 | 4.20246 0.970214 0
594 | 4.19818 0.988541 0
595 | 4.22592 1.01455 0
596 | 4.22145 1.03298 0
597 | 4.21691 1.05139 0
598 | 4.21228 1.06978 0
599 | 4.20757 1.08815 0
600 | 4.21439 1.10956 0
601 | 4.2095 1.12793 0
602 | 4.20744 1.14708 0
603 | 4.20432 1.16596 0
604 | 4.19919 1.18429 0
605 | 2.65981 0.762688 0
606 | 2.65646 0.774287 0
607 | 2.7173 0.804899 0
608 | 3.06806 0.923381 0
609 | 3.09938 0.947577 0
610 | 4.16198 1.29233 0
611 | 4.1563 1.31048 0
612 | 4.14959 1.32829 0
613 | 4.1409 1.34546 0
614 | 1.44639 0.476948 0
615 | 1.4443 0.483255 0
616 | 1.44975 0.492124 0
617 | 1.44853 0.49877 0
618 | 1.44918 0.506075 0
619 | 1.45261 0.514396 0
620 | 1.45412 0.522081 0
621 | 1.47626 0.537314 0
622 | 4.06049 1.49799 0
623 | 4.05392 1.5157 0
624 | 4.01454 1.52097 0
625 | 4.00786 1.53847 0
626 | 4.01695 1.56211 0
627 | 4.0101 1.57962 0
628 | 3.97531 1.58599 0
629 | 3.96649 1.60257 0
630 | 3.94465 1.6138 0
631 | 3.93111 1.62832 0
632 | 3.92397 1.64546 0
633 | 3.90478 1.65748 0
634 | 3.88281 1.66819 0
635 | 3.8755 1.68511 0
636 | 3.86902 1.70241 0
637 | 3.86156 1.71928 0
638 | 3.85402 1.73611 0
639 | 2.93792 1.40131 0
640 | 2.93177 1.41412 0
641 | 2.91838 1.42339 0
642 | 2.46102 1.21364 0
643 | 2.45302 1.22303 0
644 | 2.44676 1.23327 0
645 | 2.44136 1.24393 0
646 | 3.48661 2.07432 0
647 | 3.47753 2.08951 0
648 | 1.76016 1.12134 0
649 | 1.74095 1.11982 0
650 | 1.73605 1.1274 0
651 | 1.73111 1.13497 0
652 | 1.72698 1.14306 0
653 | 1.72696 1.15392 0
654 | 3.23565 2.26563 0
655 | 3.22573 2.27972 0
656 | 1.29676 0.950826 0
657 | 1.25643 0.929708 0
658 | 1.24675 0.930993 0
659 | 1.24188 0.935822 0
660 | 1.23778 0.941232 0
661 | 1.23525 0.947842 0
662 | 1.23427 0.955671 0
663 | 3.05118 2.38384 0
664 | 3.04939 2.40394 0
665 | 3.03026 2.41038 0
666 | 3.02829 2.43046 0
667 | 2.88557 2.48636 0
668 | 2.86261 2.48843 0
669 | 2.86376 2.51145 0
670 | 2.76399 2.55501 0
671 | 2.75282 2.56704 0
672 | 2.67324 2.60415 0
673 | 2.65757 2.61159 0
674 | 2.64615 2.62316 0
675 | 2.62478 2.62478 0
676 | 0.049281 0.049713 0
677 | 0.0357464 0.0363758 0
678 | 0.0355873 0.0365314 0
679 | 0.0354276 0.0366863 0
680 | 0.0380332 0.03973 0
681 | 0.0378595 0.0398956 0
682 | 0.0376851 0.0400604 0
683 | 0.0259159 0.0277914 0
684 | 0.023758 0.0257013 0
685 | 0.0236457 0.0258047 0
686 | 0.0235328 0.0259076 0
687 | 0.0301109 0.0334415 0
688 | 0.0299647 0.0335726 0
689 | 0.0265048 0.0299582 0
690 | 0.0250551 0.0285699 0
691 | 0.0242742 0.0279243 0
692 | 0.0241521 0.0280299 0
693 | 0.0240296 0.028135 0
694 | 0.0316601 0.0373984 0
695 | 0.0353533 0.0421324 0
696 | 0.0370875 0.0445928 0
697 | 0.0349843 0.0424393 0
698 | 0.0347988 0.0425916 0
699 | 0.0346126 0.042743 0
700 | 0.0344258 0.0428936 0
701 | 0.0286357 0.036 0
702 | 0.0284783 0.0361246 0
703 | 0.0338614 0.0433406 0
704 | 0.0373453 0.0482321 0
705 | 0.0371344 0.0483946 0
706 | 0.0320806 0.0421881 0
707 | 0.0318962 0.0423277 0
708 | 0.0323095 0.0432677 0
709 | 0.0321204 0.0434083 0
710 | 0.032522 0.0443545 0
711 | 0.0323282 0.0444959 0
712 | 0.0338865 0.0470713 0
713 | 0.0336808 0.0472187 0
714 | 0.0334744 0.0473652 0
715 | 0.0344146 0.0491491 0
716 | 0.0341998 0.0492988 0
717 | 0.0351172 0.0510958 0
718 | 0.0348939 0.0512486 0
719 | 0.03467 0.0514003 0
720 | 0.0361121 0.0540455 0
721 | 0.0358759 0.0542026 0
722 | 0.0361874 0.0551949 0
723 | 0.0359462 0.0553523 0
724 | 0.0357043 0.0555086 0
725 | 0.0354618 0.0556638 0
726 | 0.0352186 0.055818 0
727 | 0.0349747 0.0559712 0
728 | 0.0363088 0.0586743 0
729 | 0.0360524 0.0588322 0
730 | 0.0357954 0.0589889 0
731 | 0.0355376 0.0591445 0
732 | 0.0352792 0.059299 0
733 | 0.0360352 0.0611757 0
734 | 0.035768 0.0613323 0
735 | 0.035 0.0606218 0
736 | 0.0347352 0.0607739 0
737 | 0.0344697 0.0609249 0
738 | 0.0356694 0.0636922 0
739 | 0.0339367 0.0612234 0
740 | 0.0317453 0.057864 0
741 | 0.0314925 0.0580019 0
742 | 0.0312391 0.0581388 0
743 | 0.0295767 0.0556257 0
744 | 0.0293337 0.0557542 0
745 | 0.0327842 0.0629778 0
746 | 0.0343405 0.0666763 0
747 | 0.0340493 0.0668255 0
748 | 0.0324071 0.0642945 0
749 | 0.0312338 0.0626454 0
750 | 0.0309602 0.0627811 0
751 | 0.0311244 0.0638144 0
752 | 0.0308456 0.0639496 0
753 | 0.0297053 0.0622784 0
754 | 0.0294332 0.0624074 0
755 | 0.028738 0.0616289 0
756 | 0.0284689 0.0617537 0
757 | 0.0281991 0.0618774 0
758 | 0.0279289 0.0619998 0
759 | 0.0276581 0.0621211 0
760 | 0.0273868 0.0622412 0
761 | 0.0267162 0.061443 0
762 | 0.0252636 0.0588026 0
763 | 0.0250068 0.0589123 0
764 | 0.0251362 0.0599431 0
765 | 0.0248744 0.0600522 0
766 | 0.0265054 0.0647878 0
767 | 0.0262225 0.0649029 0
768 | 0.0266801 0.0668743 0
769 | 0.0263881 0.0669901 0
770 | 0.0257331 0.0661726 0
771 | 0.0240107 0.0625499 0
772 | 0.0233832 0.0617189 0
773 | 0.0231137 0.0618204 0
774 | 0.0211131 0.0572297 0
775 | 0.0225733 0.0620197 0
776 | 0.0223025 0.0621176 0
777 | 0.0243679 0.0688128 0
778 | 0.0243971 0.0698626 0
779 | 0.024092 0.0699684 0
780 | 0.0221793 0.0653382 0
781 | 0.021894 0.0654343 0
782 | 0.0216083 0.0655292 0
783 | 0.0216312 0.066574 0
784 | 0.020121 0.0628581 0
785 | 0.0192452 0.0610379 0
786 | 0.0189787 0.0611213 0
787 | 0.0216355 0.0707666 0
788 | 0.0213265 0.0708603 0
789 | 0.0204491 0.069035 0
790 | 0.0201477 0.0691236 0
791 | 0.0203972 0.0711334 0
792 | 0.0200866 0.0712217 0
793 | 0.0184394 0.0664905 0
794 | 0.0181492 0.0665703 0
795 | 0.0170821 0.0637511 0
796 | 0.0170583 0.0647921 0
797 | 0.0167755 0.0648659 0
798 | 0.0164923 0.0649385 0
799 | 0.0162088 0.0650098 0
800 | 0.015925 0.0650799 0
801 | 0.0163412 0.0680659 0
802 | 0.0167316 0.0710567 0
803 | 0.0164214 0.071129 0
804 | 0.0154488 0.068274 0
805 | 0.0149343 0.0673644 0
806 | 0.0146403 0.0674289 0
807 | 0.014138 0.066514 0
808 | 0.0138476 0.0665751 0
809 | 0.013557 0.0666349 0
810 | 0.0132661 0.0666934 0
811 | 0.0139291 0.0716588 0
812 | 0.0128702 0.0677891 0
813 | 0.0133032 0.0717776 0
814 | 0.0122781 0.0678988 0
815 | 0.0125027 0.0709062 0
816 | 0.0116851 0.0680034 0
817 | 0.0115533 0.06904 0
818 | 0.011252 0.0690897 0
819 | 0.0109504 0.0691382 0
820 | 0.0103444 0.0672086 0
821 | 0.010051 0.0672531 0
822 | 0.0097575 0.0672963 0
823 | 0.00946377 0.0673382 0
824 | 0.00916987 0.0673789 0
825 | 0.00887578 0.0674183 0
826 | 0.00921253 0.0724164 0
827 | 0.00889646 0.0724559 0
828 | 0.00822762 0.0695148 0
829 | 0.00735821 0.0645822 0
830 | 0.00729408 0.0666018 0
831 | 0.00700341 0.066633 0
832 | 0.00701317 0.0696478 0
833 | 0.0069009 0.0716685 0
834 | 0.00658812 0.071698 0
835 | 0.00636237 0.0727222 0
836 | 0.006045 0.0727493 0
837 | 0.00580598 0.0737719 0
838 | 0.00548403 0.0737965 0
839 | 0.0048132 0.0688319 0
840 | 0.00451282 0.0688523 0
841 | 0.0043955 0.0718657 0
842 | 0.00430865 0.0758778 0
843 | 0.00418688 0.0798904 0
844 | 0.00383825 0.0799079 0
845 | 0.00331508 0.0759277 0
846 | 0.00298375 0.0759414 0
847 | 0.00265236 0.0759537 0
848 | 0.00232093 0.0759645 0
849 | 0.00198945 0.075974 0
850 | 0.00165793 0.0759819 0
851 | 0.00132639 0.0759884 0
852 | 0.000994812 0.0759935 0
853 | 0.000663219 0.0759971 0
854 | 0.000344704 0.0789993 0
855 | 2.91059e-09 0.08 0
856 | -0.000353425 0.0809992 0
857 | -0.000706846 0.0809969 0
858 | -0.00102099 0.0779933 0
859 | -0.00134383 0.0769883 0
860 | -0.00167974 0.0769817 0
861 | -0.00188474 0.0719753 0
862 | -0.00219877 0.0719664 0
863 | -0.00282686 0.0809507 0
864 | -0.00318004 0.0809375 0
865 | -0.00340231 0.0779258 0
866 | -0.00369431 0.0769113 0
867 | -0.0040822 0.0778931 0
868 | -0.00442203 0.0778745 0
869 | -0.00476178 0.0778545 0
870 | -0.00503604 0.0768351 0
871 | -0.00537125 0.0768124 0
872 | -0.00570635 0.0767883 0
873 | -0.00611981 0.0777596 0
874 | -0.00637623 0.0767355 0
875 | -0.00653668 0.0747146 0
876 | -0.00686262 0.0746854 0
877 | -0.00738012 0.0766455 0
878 | -0.00781467 0.0776075 0
879 | -0.00815322 0.0775727 0
880 | -0.00849161 0.0775364 0
881 | -0.00871664 0.076505 0
882 | -0.00905038 0.0764663 0
883 | -0.00974954 0.0794037 0
884 | -0.0100959 0.0793604 0
885 | -0.0104421 0.0793156 0
886 | -0.0111926 0.0822419 0
887 | -0.0115514 0.0821922 0
888 | -0.0116229 0.0801618 0
889 | -0.0118247 0.0791213 0
890 | -0.0117135 0.0761038 0
891 | -0.011889 0.0750643 0
892 | -0.0120557 0.0740247 0
893 | -0.0123786 0.0739714 0
894 | -0.0127012 0.0739167 0
895 | -0.0140655 0.0797694 0
896 | -0.0144134 0.0797073 0
897 | -0.0147611 0.0796437 0
898 | -0.0154815 0.0815434 0
899 | -0.0152647 0.0785302 0
900 | -0.0161925 0.0814052 0
901 | -0.0159494 0.078394 0
902 | -0.016495 0.0793027 0
903 | -0.0168408 0.07923 0
904 | -0.0178229 0.0820874 0
905 | -0.0181809 0.0820089 0
906 | -0.0185386 0.0819288 0
907 | -0.018221 0.078924 0
908 | -0.01719 0.0730034 0
909 | -0.0175084 0.0729278 0
910 | -0.0183018 0.0747933 0
911 | -0.0200795 0.0805345 0
912 | -0.0204307 0.0804462 0
913 | -0.0207815 0.0803563 0
914 | -0.0208774 0.0792978 0
915 | -0.021482 0.0801718 0
916 | -0.0223577 0.0820069 0
917 | -0.0227153 0.0819086 0
918 | -0.0238868 0.0846961 0
919 | -0.0228779 0.0797847 0
920 | -0.0246249 0.0844844 0
921 | -0.0230052 0.0776644 0
922 | -0.0242085 0.080436 0
923 | -0.0245592 0.0803296 0
924 | -0.0249095 0.0802217 0
925 | -0.0258607 0.0820197 0
926 | -0.0256086 0.0800012 0
927 | -0.0262664 0.0808398 0
928 | -0.0266189 0.0807244 0
929 | -0.0285574 0.0853491 0
930 | -0.0289296 0.0852237 0
931 | -0.0289756 0.0841512 0
932 | -0.0293425 0.0840239 0
933 | -0.0290412 0.0820098 0
934 | -0.028385 0.0790588 0
935 | -0.0287297 0.0789342 0
936 | -0.0308044 0.083499 0
937 | -0.0311685 0.0833638 0
938 | -0.0315319 0.083227 0
939 | -0.031178 0.0812215 0
940 | -0.0315321 0.0810847 0
941 | -0.0318856 0.0809463 0
942 | -0.0329796 0.0826641 0
943 | -0.03334 0.0825194 0
944 | -0.0318065 0.0777454 0
945 | -0.0321454 0.0776059 0
946 | -0.0336438 0.0802315 0
947 | -0.0359473 0.0846865 0
948 | -0.0371059 0.0863664 0
949 | -0.0374824 0.0862036 0
950 | -0.0382609 0.0869546 0
951 | -0.03864 0.0867868 0
952 | -0.0381969 0.0847939 0
953 | -0.0377371 0.0828065 0
954 | -0.0368421 0.0799166 0
955 | -0.0371904 0.0797551 0
956 | -0.037538 0.0795921 0
957 | -0.037885 0.0794275 0
958 | -0.0386656 0.0801621 0
959 | -0.039015 0.0799927 0
960 | -0.0437866 0.0887904 0
961 | -0.0441736 0.0885985 0
962 | -0.0427593 0.084833 0
963 | -0.0413131 0.0810816 0
964 | -0.0416665 0.0809006 0
965 | -0.0429426 0.082492 0
966 | -0.0437678 0.0831888 0
967 | -0.0441303 0.0829971 0
968 | -0.0463853 0.0863273 0
969 | -0.0467616 0.0861241 0
970 | -0.0500228 0.0911796 0
971 | -0.050905 0.0918351 0
972 | -0.0537483 0.0959746 0
973 | -0.0571211 0.100961 0
974 | -0.0610346 0.106788 0
975 | -0.067 0.116047 0
976 | -0.0680095 0.116618 0
977 | -0.0730855 0.124075 0
978 | -0.0772052 0.12977 0
979 | -0.0839512 0.139718 0
980 | -0.0881914 0.145335 0
981 | -0.0977072 0.159444 0
982 | -0.0994544 0.160717 0
983 | -0.105984 0.16961 0
984 | -0.11953 0.189443 0
985 | -0.120355 0.18892 0
986 | -0.118473 0.184188 0
987 | -0.112196 0.172766 0
988 | -0.112948 0.172275 0
989 | -0.0292527 0.044196 0
990 | -0.0294452 0.0440679 0
991 | -0.031874 0.0472551 0
992 | -0.0320799 0.0471156 0
993 | -0.0345508 0.0502717 0
994 | -0.0381898 0.0550503 0
995 | -0.0384296 0.0548832 0
996 | -0.0346287 0.0489985 0
997 | -0.0325194 0.0455905 0
998 | -0.032718 0.0454481 0
999 | -0.032916 0.045305 0
1000 | -0.0295655 0.0403222 0
1001 | -0.0297411 0.0401928 0
1002 | -0.0299162 0.0400627 0
1003 | -0.0282853 0.0375359 0
1004 | -0.0260276 0.0342281 0
1005 | -0.0286118 0.0372876 0
1006 | -0.0263253 0.0339997 0
1007 | -0.0258578 0.0330965 0
1008 | -0.0260019 0.0329833 0
1009 | -0.0280132 0.0352174 0
1010 | -0.0300443 0.0374345 0
1011 | -0.0302074 0.037303 0
1012 | -0.0253082 0.0309757 0
1013 | -0.024171 0.0293217 0
1014 | -0.0255776 0.0307537 0
1015 | -0.0257115 0.0306418 0
1016 | -0.025845 0.0305293 0
1017 | -0.0298746 0.0349787 0
1018 | -0.0300269 0.034848 0
1019 | -0.0308348 0.0354713 0
1020 | -0.0316486 0.0360883 0
1021 | -0.0318058 0.0359499 0
1022 | -0.0526047 0.0589385 0
1023 | -0.0662439 0.0735713 0
1024 | -0.0753051 0.0829044 0
1025 | -0.0912047 0.0995324 0
1026 | -0.0916381 0.0991335 0
1027 | -0.0859318 0.0921506 0
1028 | -0.0863331 0.0917747 0
1029 | -0.0867327 0.0913972 0
1030 | -0.0905882 0.0946297 0
1031 | -0.103504 0.107182 0
1032 | -0.103971 0.106729 0
1033 | -0.0960246 0.0977153 0
1034 | -0.093634 0.0944547 0
1035 | -0.0855599 0.0855599 0
--------------------------------------------------------------------------------
/data/laser_test_points_v2.txt:
--------------------------------------------------------------------------------
1 | 1.55455 -2.12014 0
2 | 1.56379 -2.11334 0
3 | 1.5718 -2.10489 0
4 | 1.58277 -2.10041 0
5 | 1.59192 -2.09349 0
6 | 1.60104 -2.08652 0
7 | 1.60646 -2.07477 0
8 | 1.60749 -2.0575 0
9 | 1.61645 -2.05046 0
10 | 1.62539 -2.04339 0
11 | 1.63366 -2.0355 0
12 | 1.64127 -2.0268 0
13 | 1.64946 -2.01884 0
14 | 1.65635 -2.00931 0
15 | 1.6651 -2.00206 0
16 | 1.67253 -1.99325 0
17 | 1.67992 -1.9844 0
18 | 1.68856 -1.97706 0
19 | 1.69391 -1.96588 0
20 | 1.70247 -1.95847 0
21 | 1.71034 -1.95027 0
22 | 1.7142 -1.93755 0
23 | 1.72264 -1.93005 0
24 | 1.73104 -1.92252 0
25 | 1.7374 -1.91272 0
26 | 1.74573 -1.90512 0
27 | 1.75334 -1.89675 0
28 | 1.75751 -1.8847 0
29 | 1.76709 -1.87847 0
30 | 1.77045 -1.86566 0
31 | 1.77857 -1.85792 0
32 | 1.78666 -1.85014 0
33 | 1.79472 -1.84233 0
34 | 1.80064 -1.83234 0
35 | 1.80439 -1.82021 0
36 | 1.81231 -1.81231 0
37 | 1.81949 -1.80369 0
38 | 1.82735 -1.79573 0
39 | 1.83517 -1.78774 0
40 | 1.84726 -1.78388 0
41 | 1.8507 -1.77166 0
42 | 1.85841 -1.76356 0
43 | 1.86609 -1.75544 0
44 | 1.87373 -1.74728 0
45 | 1.88501 -1.74248 0
46 | 1.88817 -1.73019 0
47 | 1.90014 -1.72597 0
48 | 1.90022 -1.71097 0
--------------------------------------------------------------------------------
/imgs/image00.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image00.png
--------------------------------------------------------------------------------
/imgs/image01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image01.png
--------------------------------------------------------------------------------
/imgs/image02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image02.png
--------------------------------------------------------------------------------
/imgs/image03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image03.png
--------------------------------------------------------------------------------
/imgs/image04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image04.png
--------------------------------------------------------------------------------
/imgs/image05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image05.png
--------------------------------------------------------------------------------
/imgs/image06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image06.png
--------------------------------------------------------------------------------
/imgs/image07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image07.png
--------------------------------------------------------------------------------
/imgs/image08.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image08.png
--------------------------------------------------------------------------------
/imgs/image09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image09.png
--------------------------------------------------------------------------------
/imgs/image10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image10.png
--------------------------------------------------------------------------------
/imgs/image11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image11.png
--------------------------------------------------------------------------------
/imgs/image12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image12.png
--------------------------------------------------------------------------------
/imgs/image13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image13.png
--------------------------------------------------------------------------------
/imgs/image14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image14.png
--------------------------------------------------------------------------------
/imgs/image15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image15.png
--------------------------------------------------------------------------------
/imgs/image16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image16.png
--------------------------------------------------------------------------------
/imgs/image17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image17.png
--------------------------------------------------------------------------------
/imgs/image18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image18.png
--------------------------------------------------------------------------------
/imgs/image19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image19.png
--------------------------------------------------------------------------------
/imgs/image20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image20.png
--------------------------------------------------------------------------------
/imgs/image21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image21.png
--------------------------------------------------------------------------------
/imgs/image22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image22.png
--------------------------------------------------------------------------------
/imgs/image23.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image23.png
--------------------------------------------------------------------------------
/imgs/image24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image24.png
--------------------------------------------------------------------------------
/imgs/image25.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image25.png
--------------------------------------------------------------------------------
/imgs/image26.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image26.png
--------------------------------------------------------------------------------
/imgs/image27.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image27.png
--------------------------------------------------------------------------------
/imgs/image28.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image28.png
--------------------------------------------------------------------------------
/imgs/image29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image29.png
--------------------------------------------------------------------------------
/imgs/image30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image30.png
--------------------------------------------------------------------------------
/imgs/image31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image31.png
--------------------------------------------------------------------------------
/imgs/image32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image32.png
--------------------------------------------------------------------------------
/imgs/image33.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image33.png
--------------------------------------------------------------------------------
/imgs/image34.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image34.png
--------------------------------------------------------------------------------
/imgs/image35.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image35.png
--------------------------------------------------------------------------------
/imgs/image36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image36.png
--------------------------------------------------------------------------------
/imgs/image37.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image37.png
--------------------------------------------------------------------------------
/imgs/image38.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image38.png
--------------------------------------------------------------------------------
/imgs/image39.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TurtleZhong/camera_lidar_calibration/3645c09fe2ae80ab57a46fe77b29f40899fb8c17/imgs/image39.png
--------------------------------------------------------------------------------
/imgs/image_lists.txt:
--------------------------------------------------------------------------------
1 | image00.png
2 | image01.png
3 | image02.png
4 | image03.png
5 | image04.png
6 | image05.png
7 | image06.png
8 | image07.png
9 | image08.png
10 | image09.png
11 | image10.png
12 | image11.png
13 | image12.png
14 | image13.png
15 | image14.png
16 | image15.png
17 | image16.png
18 | image17.png
19 | image18.png
20 | image19.png
21 | image20.png
22 | image21.png
23 | image22.png
24 | image23.png
25 | image24.png
26 | image25.png
27 | image26.png
28 | image27.png
29 | image28.png
30 | image29.png
31 | image30.png
32 | image31.png
33 | image32.png
34 | image33.png
35 | image34.png
36 | image35.png
37 | image36.png
38 | image37.png
39 | image38.png
40 | image39.png
--------------------------------------------------------------------------------
/include/config.h:
--------------------------------------------------------------------------------
1 | //
2 | // Created by m on 7/5/18.
3 | //
4 |
5 | #ifndef CAMERA_LIDAR_CALIBRATION_CONFIG_H
6 | #define CAMERA_LIDAR_CALIBRATION_CONFIG_H
7 |
8 | #include
9 | #include
10 | #include
11 | #include
12 | #include
13 | #include
14 | #include
15 | #include
16 | #include
17 | #include
18 | #include