├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── code ├── cfg.h ├── main.cpp ├── test.cpp └── util.cpp └── resource ├── imgs_for_stereo ├── 10_left.png ├── 10_right.png ├── 11_left.png ├── 11_right.png ├── 12_left.png ├── 12_right.png ├── 13_left.png ├── 13_right.png ├── 14_left.png ├── 14_right.png ├── 15_left.png ├── 15_right.png ├── 16_left.png ├── 16_right.png ├── 17_left.png ├── 17_right.png ├── 18_left.png ├── 18_right.png ├── 19_left.png ├── 19_right.png ├── 1_left.png ├── 1_right.png ├── 20_left.png ├── 20_right.png ├── 21_left.png ├── 21_right.png ├── 2_left.png ├── 2_right.png ├── 3_left.png ├── 3_right.png ├── 4_left.png ├── 4_right.png ├── 5_left.png ├── 5_right.png ├── 6_left.png ├── 6_right.png ├── 7_left.png ├── 7_right.png ├── 8_left.png ├── 8_right.png ├── 9_left.png └── 9_right.png ├── imgs_for_test ├── 7_left.png └── 7_right.png └── some_result ├── combine_1.jpg ├── combine_10.jpg ├── combine_11.jpg ├── combine_12.jpg ├── combine_13.jpg ├── combine_14.jpg ├── combine_15.jpg ├── combine_16.jpg ├── combine_17.jpg ├── combine_18.jpg ├── combine_19.jpg ├── combine_2.jpg ├── combine_20.jpg ├── combine_21.jpg ├── combine_3.jpg ├── combine_4.jpg ├── combine_5.jpg ├── combine_6.jpg ├── combine_7.jpg ├── combine_8.jpg ├── combine_9.jpg ├── depth.png └── disp.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/README.md -------------------------------------------------------------------------------- /code/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/code/cfg.h -------------------------------------------------------------------------------- /code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/code/main.cpp -------------------------------------------------------------------------------- /code/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/code/test.cpp -------------------------------------------------------------------------------- /code/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/code/util.cpp -------------------------------------------------------------------------------- /resource/imgs_for_stereo/10_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/10_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/10_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/10_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/11_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/11_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/11_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/11_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/12_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/12_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/12_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/12_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/13_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/13_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/13_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/13_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/14_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/14_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/14_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/14_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/15_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/15_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/15_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/15_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/16_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/16_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/16_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/16_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/17_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/17_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/17_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/17_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/18_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/18_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/18_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/18_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/19_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/19_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/19_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/19_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/1_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/1_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/1_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/1_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/20_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/20_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/20_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/20_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/21_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/21_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/21_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/21_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/2_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/2_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/2_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/2_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/3_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/3_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/3_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/3_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/4_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/4_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/4_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/4_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/5_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/5_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/5_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/5_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/6_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/6_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/6_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/6_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/7_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/7_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/7_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/7_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/8_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/8_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/8_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/8_right.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/9_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/9_left.png -------------------------------------------------------------------------------- /resource/imgs_for_stereo/9_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_stereo/9_right.png -------------------------------------------------------------------------------- /resource/imgs_for_test/7_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_test/7_left.png -------------------------------------------------------------------------------- /resource/imgs_for_test/7_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/imgs_for_test/7_right.png -------------------------------------------------------------------------------- /resource/some_result/combine_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_1.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_10.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_11.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_12.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_13.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_14.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_15.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_16.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_17.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_18.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_19.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_2.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_20.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_21.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_3.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_4.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_5.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_6.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_7.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_8.jpg -------------------------------------------------------------------------------- /resource/some_result/combine_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/combine_9.jpg -------------------------------------------------------------------------------- /resource/some_result/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/depth.png -------------------------------------------------------------------------------- /resource/some_result/disp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mt-cly/OpenCV-based-Distance-Estimation-with-Binocular-Fisheye-Camera/HEAD/resource/some_result/disp.png --------------------------------------------------------------------------------