├── README.md ├── get_remap ├── CMakeLists.txt ├── get_remap.cpp └── get_remap_fisheye.cpp ├── monoCalibration ├── CMakeLists.txt ├── README.md ├── camera_mono.cpp └── popt_pp.h ├── monoCalibration_fisheye ├── CMakeLists.txt └── fisheye_mono.cpp ├── stereoCalibration ├── CMakeLists.txt ├── README.md ├── popt_pp.h ├── segmentImg.cpp └── stereoCalibration.cpp └── stereoCalibration_fisheye ├── CMakeLists.txt ├── README.md ├── popt_pp.h └── stereo_calib_fisheye.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/README.md -------------------------------------------------------------------------------- /get_remap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/get_remap/CMakeLists.txt -------------------------------------------------------------------------------- /get_remap/get_remap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/get_remap/get_remap.cpp -------------------------------------------------------------------------------- /get_remap/get_remap_fisheye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/get_remap/get_remap_fisheye.cpp -------------------------------------------------------------------------------- /monoCalibration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/monoCalibration/CMakeLists.txt -------------------------------------------------------------------------------- /monoCalibration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/monoCalibration/README.md -------------------------------------------------------------------------------- /monoCalibration/camera_mono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/monoCalibration/camera_mono.cpp -------------------------------------------------------------------------------- /monoCalibration/popt_pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/monoCalibration/popt_pp.h -------------------------------------------------------------------------------- /monoCalibration_fisheye/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/monoCalibration_fisheye/CMakeLists.txt -------------------------------------------------------------------------------- /monoCalibration_fisheye/fisheye_mono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/monoCalibration_fisheye/fisheye_mono.cpp -------------------------------------------------------------------------------- /stereoCalibration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration/CMakeLists.txt -------------------------------------------------------------------------------- /stereoCalibration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration/README.md -------------------------------------------------------------------------------- /stereoCalibration/popt_pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration/popt_pp.h -------------------------------------------------------------------------------- /stereoCalibration/segmentImg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration/segmentImg.cpp -------------------------------------------------------------------------------- /stereoCalibration/stereoCalibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration/stereoCalibration.cpp -------------------------------------------------------------------------------- /stereoCalibration_fisheye/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration_fisheye/CMakeLists.txt -------------------------------------------------------------------------------- /stereoCalibration_fisheye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration_fisheye/README.md -------------------------------------------------------------------------------- /stereoCalibration_fisheye/popt_pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration_fisheye/popt_pp.h -------------------------------------------------------------------------------- /stereoCalibration_fisheye/stereo_calib_fisheye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoJunqiang/camera_calibration/HEAD/stereoCalibration_fisheye/stereo_calib_fisheye.cpp --------------------------------------------------------------------------------