├── .gitignore ├── addon_config.mk ├── example-calibration ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── CameraProjectorExtrinsics.yml │ │ ├── calibrationCamera.yml │ │ ├── calibrationProjector.yml │ │ ├── chessboard_8x5.pdf │ │ └── settings.xml ├── config.make ├── example-calibration.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofApp Debug.xcscheme │ │ └── ofApp Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-feature-tracker ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── CameraProjectorExtrinsics.yml │ │ ├── calibrationCamera.yml │ │ └── calibrationProjector.yml ├── config.make ├── example-feature-tracker.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofApp Debug.xcscheme │ │ └── ofApp Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ofxaddons_thumbnail.png ├── readme.md └── src ├── ofxCvCameraProjectorCalibration.cpp └── ofxCvCameraProjectorCalibration.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/.gitignore -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/addon_config.mk -------------------------------------------------------------------------------- /example-calibration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/Makefile -------------------------------------------------------------------------------- /example-calibration/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/Project.xcconfig -------------------------------------------------------------------------------- /example-calibration/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/addons.make -------------------------------------------------------------------------------- /example-calibration/bin/data/CameraProjectorExtrinsics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/bin/data/CameraProjectorExtrinsics.yml -------------------------------------------------------------------------------- /example-calibration/bin/data/calibrationCamera.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/bin/data/calibrationCamera.yml -------------------------------------------------------------------------------- /example-calibration/bin/data/calibrationProjector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/bin/data/calibrationProjector.yml -------------------------------------------------------------------------------- /example-calibration/bin/data/chessboard_8x5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/bin/data/chessboard_8x5.pdf -------------------------------------------------------------------------------- /example-calibration/bin/data/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/bin/data/settings.xml -------------------------------------------------------------------------------- /example-calibration/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/config.make -------------------------------------------------------------------------------- /example-calibration/example-calibration.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/example-calibration.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-calibration/example-calibration.xcodeproj/xcshareddata/xcschemes/ofApp Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/example-calibration.xcodeproj/xcshareddata/xcschemes/ofApp Debug.xcscheme -------------------------------------------------------------------------------- /example-calibration/example-calibration.xcodeproj/xcshareddata/xcschemes/ofApp Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/example-calibration.xcodeproj/xcshareddata/xcschemes/ofApp Release.xcscheme -------------------------------------------------------------------------------- /example-calibration/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-calibration/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/src/main.cpp -------------------------------------------------------------------------------- /example-calibration/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/src/ofApp.cpp -------------------------------------------------------------------------------- /example-calibration/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-calibration/src/ofApp.h -------------------------------------------------------------------------------- /example-feature-tracker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/Makefile -------------------------------------------------------------------------------- /example-feature-tracker/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/Project.xcconfig -------------------------------------------------------------------------------- /example-feature-tracker/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/addons.make -------------------------------------------------------------------------------- /example-feature-tracker/bin/data/CameraProjectorExtrinsics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/bin/data/CameraProjectorExtrinsics.yml -------------------------------------------------------------------------------- /example-feature-tracker/bin/data/calibrationCamera.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/bin/data/calibrationCamera.yml -------------------------------------------------------------------------------- /example-feature-tracker/bin/data/calibrationProjector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/bin/data/calibrationProjector.yml -------------------------------------------------------------------------------- /example-feature-tracker/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/config.make -------------------------------------------------------------------------------- /example-feature-tracker/example-feature-tracker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/example-feature-tracker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-feature-tracker/example-feature-tracker.xcodeproj/xcshareddata/xcschemes/ofApp Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/example-feature-tracker.xcodeproj/xcshareddata/xcschemes/ofApp Debug.xcscheme -------------------------------------------------------------------------------- /example-feature-tracker/example-feature-tracker.xcodeproj/xcshareddata/xcschemes/ofApp Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/example-feature-tracker.xcodeproj/xcshareddata/xcschemes/ofApp Release.xcscheme -------------------------------------------------------------------------------- /example-feature-tracker/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-feature-tracker/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/src/main.cpp -------------------------------------------------------------------------------- /example-feature-tracker/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/src/testApp.cpp -------------------------------------------------------------------------------- /example-feature-tracker/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/example-feature-tracker/src/testApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/readme.md -------------------------------------------------------------------------------- /src/ofxCvCameraProjectorCalibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/src/ofxCvCameraProjectorCalibration.cpp -------------------------------------------------------------------------------- /src/ofxCvCameraProjectorCalibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrildiagne/ofxCvCameraProjectorCalibration/HEAD/src/ofxCvCameraProjectorCalibration.h --------------------------------------------------------------------------------