├── .gitignore ├── README.md ├── SIFT_filterMatches_homography ├── Makefile ├── Project.xcconfig ├── SIFT_filterMatches_homography.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SIFT_filterMatches_homography Debug.xcscheme │ │ └── SIFT_filterMatches_homography Release.xcscheme ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── peeping_tom_crop1-3d.jpg │ │ ├── peeping_tom_crop1.jpg │ │ ├── peeping_tom_crop2-3d.jpg │ │ ├── peeping_tom_crop2.jpg │ │ └── peeping_tom_scene.jpg ├── config.make ├── openFrameworks-Info.plist └── src │ ├── SIFTMatcher.cpp │ ├── SIFTMatcher.hpp │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── SIFTtest ├── Makefile ├── Project.xcconfig ├── SIFTtest.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SIFTtest Debug.xcscheme │ │ └── SIFTtest Release.xcscheme ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── peeping_tom_1.jpg │ │ ├── peeping_tom_1_3d.jpg │ │ └── peeping_tom_2.jpg ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── griddedHistogram ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── grid.png │ │ └── img.jpg ├── config.make ├── griddedHistogram.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── griddedHistogram Debug.xcscheme │ │ └── griddedHistogram Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── Histogrid.cpp │ ├── Histogrid.hpp │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── optFlowTest ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin └── data │ ├── .gitkeep │ ├── rearWindow_clip_1-240p.mp4 │ └── rearWindow_clip_1.mp4 ├── config.make ├── openFrameworks-Info.plist ├── optFlowTest.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── optFlowTest Debug.xcscheme │ └── optFlowTest Release.xcscheme └── src ├── main.cpp ├── ofApp.cpp └── ofApp.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/README.md -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/Makefile -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/Project.xcconfig -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/SIFT_filterMatches_homography.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/SIFT_filterMatches_homography.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/SIFT_filterMatches_homography.xcodeproj/xcshareddata/xcschemes/SIFT_filterMatches_homography Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/SIFT_filterMatches_homography.xcodeproj/xcshareddata/xcschemes/SIFT_filterMatches_homography Debug.xcscheme -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/SIFT_filterMatches_homography.xcodeproj/xcshareddata/xcschemes/SIFT_filterMatches_homography Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/SIFT_filterMatches_homography.xcodeproj/xcshareddata/xcschemes/SIFT_filterMatches_homography Release.xcscheme -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/addons.make: -------------------------------------------------------------------------------- 1 | ofxCv 2 | ofxOpenCv 3 | -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/bin/data/peeping_tom_crop1-3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/bin/data/peeping_tom_crop1-3d.jpg -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/bin/data/peeping_tom_crop1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/bin/data/peeping_tom_crop1.jpg -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/bin/data/peeping_tom_crop2-3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/bin/data/peeping_tom_crop2-3d.jpg -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/bin/data/peeping_tom_crop2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/bin/data/peeping_tom_crop2.jpg -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/bin/data/peeping_tom_scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/bin/data/peeping_tom_scene.jpg -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/config.make -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/openFrameworks-Info.plist -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/src/SIFTMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/src/SIFTMatcher.cpp -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/src/SIFTMatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/src/SIFTMatcher.hpp -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/src/main.cpp -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/src/ofApp.cpp -------------------------------------------------------------------------------- /SIFT_filterMatches_homography/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFT_filterMatches_homography/src/ofApp.h -------------------------------------------------------------------------------- /SIFTtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/Makefile -------------------------------------------------------------------------------- /SIFTtest/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/Project.xcconfig -------------------------------------------------------------------------------- /SIFTtest/SIFTtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/SIFTtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SIFTtest/SIFTtest.xcodeproj/xcshareddata/xcschemes/SIFTtest Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/SIFTtest.xcodeproj/xcshareddata/xcschemes/SIFTtest Debug.xcscheme -------------------------------------------------------------------------------- /SIFTtest/SIFTtest.xcodeproj/xcshareddata/xcschemes/SIFTtest Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/SIFTtest.xcodeproj/xcshareddata/xcschemes/SIFTtest Release.xcscheme -------------------------------------------------------------------------------- /SIFTtest/addons.make: -------------------------------------------------------------------------------- 1 | ofxCv 2 | ofxOpenCv 3 | -------------------------------------------------------------------------------- /SIFTtest/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SIFTtest/bin/data/peeping_tom_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/bin/data/peeping_tom_1.jpg -------------------------------------------------------------------------------- /SIFTtest/bin/data/peeping_tom_1_3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/bin/data/peeping_tom_1_3d.jpg -------------------------------------------------------------------------------- /SIFTtest/bin/data/peeping_tom_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/bin/data/peeping_tom_2.jpg -------------------------------------------------------------------------------- /SIFTtest/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/config.make -------------------------------------------------------------------------------- /SIFTtest/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/openFrameworks-Info.plist -------------------------------------------------------------------------------- /SIFTtest/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/src/main.cpp -------------------------------------------------------------------------------- /SIFTtest/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/src/ofApp.cpp -------------------------------------------------------------------------------- /SIFTtest/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/SIFTtest/src/ofApp.h -------------------------------------------------------------------------------- /griddedHistogram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/Makefile -------------------------------------------------------------------------------- /griddedHistogram/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/Project.xcconfig -------------------------------------------------------------------------------- /griddedHistogram/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/addons.make -------------------------------------------------------------------------------- /griddedHistogram/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /griddedHistogram/bin/data/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/bin/data/grid.png -------------------------------------------------------------------------------- /griddedHistogram/bin/data/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/bin/data/img.jpg -------------------------------------------------------------------------------- /griddedHistogram/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/config.make -------------------------------------------------------------------------------- /griddedHistogram/griddedHistogram.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/griddedHistogram.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /griddedHistogram/griddedHistogram.xcodeproj/xcshareddata/xcschemes/griddedHistogram Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/griddedHistogram.xcodeproj/xcshareddata/xcschemes/griddedHistogram Debug.xcscheme -------------------------------------------------------------------------------- /griddedHistogram/griddedHistogram.xcodeproj/xcshareddata/xcschemes/griddedHistogram Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/griddedHistogram.xcodeproj/xcshareddata/xcschemes/griddedHistogram Release.xcscheme -------------------------------------------------------------------------------- /griddedHistogram/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/openFrameworks-Info.plist -------------------------------------------------------------------------------- /griddedHistogram/src/Histogrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/src/Histogrid.cpp -------------------------------------------------------------------------------- /griddedHistogram/src/Histogrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/src/Histogrid.hpp -------------------------------------------------------------------------------- /griddedHistogram/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/src/main.cpp -------------------------------------------------------------------------------- /griddedHistogram/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/src/ofApp.cpp -------------------------------------------------------------------------------- /griddedHistogram/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/griddedHistogram/src/ofApp.h -------------------------------------------------------------------------------- /optFlowTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/Makefile -------------------------------------------------------------------------------- /optFlowTest/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/Project.xcconfig -------------------------------------------------------------------------------- /optFlowTest/addons.make: -------------------------------------------------------------------------------- 1 | ofxCv 2 | ofxOpenCv 3 | -------------------------------------------------------------------------------- /optFlowTest/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /optFlowTest/bin/data/rearWindow_clip_1-240p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/bin/data/rearWindow_clip_1-240p.mp4 -------------------------------------------------------------------------------- /optFlowTest/bin/data/rearWindow_clip_1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/bin/data/rearWindow_clip_1.mp4 -------------------------------------------------------------------------------- /optFlowTest/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/config.make -------------------------------------------------------------------------------- /optFlowTest/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/openFrameworks-Info.plist -------------------------------------------------------------------------------- /optFlowTest/optFlowTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/optFlowTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /optFlowTest/optFlowTest.xcodeproj/xcshareddata/xcschemes/optFlowTest Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/optFlowTest.xcodeproj/xcshareddata/xcschemes/optFlowTest Debug.xcscheme -------------------------------------------------------------------------------- /optFlowTest/optFlowTest.xcodeproj/xcshareddata/xcschemes/optFlowTest Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/optFlowTest.xcodeproj/xcshareddata/xcschemes/optFlowTest Release.xcscheme -------------------------------------------------------------------------------- /optFlowTest/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/src/main.cpp -------------------------------------------------------------------------------- /optFlowTest/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/src/ofApp.cpp -------------------------------------------------------------------------------- /optFlowTest/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyhenry/opencv-oF-experiments/HEAD/optFlowTest/src/ofApp.h --------------------------------------------------------------------------------