├── .gitignore ├── ofxGrabCam-example ├── Project.xcconfig ├── addons.make ├── icon.rc ├── ofxGrabCam-example.sln ├── ofxGrabCam-example.vcxproj ├── ofxGrabCam-example.vcxproj.filters ├── ofxGrabCam-example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxGrabCam-viewportTest ├── Project.xcconfig ├── icon.rc ├── ofxGrabCam-viewportExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ofxGrabCam_viewportTest.sln ├── ofxGrabCam_viewportTest.vcxproj ├── ofxGrabCam_viewportTest.vcxproj.filters ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ofxaddons_thumbnail.png ├── readme.md └── src ├── ofxGrabCam.cpp └── ofxGrabCam.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/.gitignore -------------------------------------------------------------------------------- /ofxGrabCam-example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/Project.xcconfig -------------------------------------------------------------------------------- /ofxGrabCam-example/addons.make: -------------------------------------------------------------------------------- 1 | ofxGrabcam 2 | -------------------------------------------------------------------------------- /ofxGrabCam-example/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/icon.rc -------------------------------------------------------------------------------- /ofxGrabCam-example/ofxGrabCam-example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/ofxGrabCam-example.sln -------------------------------------------------------------------------------- /ofxGrabCam-example/ofxGrabCam-example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/ofxGrabCam-example.vcxproj -------------------------------------------------------------------------------- /ofxGrabCam-example/ofxGrabCam-example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/ofxGrabCam-example.vcxproj.filters -------------------------------------------------------------------------------- /ofxGrabCam-example/ofxGrabCam-example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/ofxGrabCam-example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxGrabCam-example/ofxGrabCam-example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/ofxGrabCam-example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ofxGrabCam-example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ofxGrabCam-example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/src/main.cpp -------------------------------------------------------------------------------- /ofxGrabCam-example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxGrabCam-example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-example/src/ofApp.h -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/Project.xcconfig -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/icon.rc -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/ofxGrabCam-viewportExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/ofxGrabCam-viewportExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/ofxGrabCam-viewportExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/ofxGrabCam-viewportExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/ofxGrabCam_viewportTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/ofxGrabCam_viewportTest.sln -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/ofxGrabCam_viewportTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/ofxGrabCam_viewportTest.vcxproj -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/ofxGrabCam_viewportTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/ofxGrabCam_viewportTest.vcxproj.filters -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/src/main.cpp -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/src/testApp.cpp -------------------------------------------------------------------------------- /ofxGrabCam-viewportTest/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxGrabCam-viewportTest/src/testApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/readme.md -------------------------------------------------------------------------------- /src/ofxGrabCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/src/ofxGrabCam.cpp -------------------------------------------------------------------------------- /src/ofxGrabCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxGrabCam/HEAD/src/ofxGrabCam.h --------------------------------------------------------------------------------