├── .gitignore ├── 3rdparty └── MVSDK │ ├── README.md │ ├── include │ └── HEADERS_HERE │ └── lib │ └── LIB_FILES_HERE ├── CMakeLists.txt ├── LICENSE ├── README.md └── src ├── ImageInput.h ├── MVCameraInput.cpp ├── MVCameraInput.h ├── VideoInput.cpp ├── VideoInput.h └── demo ├── camera_calib.cpp └── camera_test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/MVSDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/3rdparty/MVSDK/README.md -------------------------------------------------------------------------------- /3rdparty/MVSDK/include/HEADERS_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/MVSDK/lib/LIB_FILES_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /src/ImageInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/src/ImageInput.h -------------------------------------------------------------------------------- /src/MVCameraInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/src/MVCameraInput.cpp -------------------------------------------------------------------------------- /src/MVCameraInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/src/MVCameraInput.h -------------------------------------------------------------------------------- /src/VideoInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/src/VideoInput.cpp -------------------------------------------------------------------------------- /src/VideoInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/src/VideoInput.h -------------------------------------------------------------------------------- /src/demo/camera_calib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/src/demo/camera_calib.cpp -------------------------------------------------------------------------------- /src/demo/camera_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MUC-RM-CV/mindvision-cam-wrapper/HEAD/src/demo/camera_test.cpp --------------------------------------------------------------------------------