├── .gitignore ├── README.md ├── example-ofxUVC ├── Project.xcconfig ├── bin │ └── data │ │ └── camera_settings.yml ├── example-ofxUVC.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example-ofxUVC Debug.xcscheme │ │ └── example-ofxUVC Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h └── src ├── UVCCameraControl.h ├── UVCCameraControl.m ├── ofxUVC.h └── ofxUVC.mm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/README.md -------------------------------------------------------------------------------- /example-ofxUVC/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/Project.xcconfig -------------------------------------------------------------------------------- /example-ofxUVC/bin/data/camera_settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/bin/data/camera_settings.yml -------------------------------------------------------------------------------- /example-ofxUVC/example-ofxUVC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/example-ofxUVC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-ofxUVC/example-ofxUVC.xcodeproj/xcshareddata/xcschemes/example-ofxUVC Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/example-ofxUVC.xcodeproj/xcshareddata/xcschemes/example-ofxUVC Debug.xcscheme -------------------------------------------------------------------------------- /example-ofxUVC/example-ofxUVC.xcodeproj/xcshareddata/xcschemes/example-ofxUVC Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/example-ofxUVC.xcodeproj/xcshareddata/xcschemes/example-ofxUVC Release.xcscheme -------------------------------------------------------------------------------- /example-ofxUVC/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-ofxUVC/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/src/main.cpp -------------------------------------------------------------------------------- /example-ofxUVC/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/src/testApp.cpp -------------------------------------------------------------------------------- /example-ofxUVC/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/example-ofxUVC/src/testApp.h -------------------------------------------------------------------------------- /src/UVCCameraControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/src/UVCCameraControl.h -------------------------------------------------------------------------------- /src/UVCCameraControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/src/UVCCameraControl.m -------------------------------------------------------------------------------- /src/ofxUVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/src/ofxUVC.h -------------------------------------------------------------------------------- /src/ofxUVC.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/ofxUVC/HEAD/src/ofxUVC.mm --------------------------------------------------------------------------------