├── Screen_Shot.png ├── example ├── Makefile ├── OpenCL.framework │ ├── Headers │ ├── OpenCL │ ├── Versions │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── cl.h │ │ │ │ ├── cl_ext.h │ │ │ │ ├── cl_gl.h │ │ │ │ ├── cl_gl_ext.h │ │ │ │ ├── cl_platform.h │ │ │ │ ├── gcl.h │ │ │ │ ├── gcl_priv.h │ │ │ │ └── opencl.h │ │ │ ├── Libraries │ │ │ │ ├── AMDil.dylib │ │ │ │ ├── AMDil_r700.dylib │ │ │ │ ├── IGIL.dylib │ │ │ │ ├── ImageFormats │ │ │ │ │ ├── float_i.dylib │ │ │ │ │ ├── float_rgba.dylib │ │ │ │ │ ├── float_rgbx.dylib │ │ │ │ │ ├── float_rgx.dylib │ │ │ │ │ ├── float_rx.dylib │ │ │ │ │ ├── half_i.dylib │ │ │ │ │ ├── half_rgba.dylib │ │ │ │ │ ├── half_rgbx.dylib │ │ │ │ │ ├── sfixed14_rgba.dylib │ │ │ │ │ ├── sint16_rgba.dylib │ │ │ │ │ ├── sint32_rgba.dylib │ │ │ │ │ ├── sint8_rgba.dylib │ │ │ │ │ ├── snorm16_rgba.dylib │ │ │ │ │ ├── snorm8_rgba.dylib │ │ │ │ │ ├── uint16_rgba.dylib │ │ │ │ │ ├── uint32_rgba.dylib │ │ │ │ │ ├── uint8_rgba.dylib │ │ │ │ │ ├── unorm16_rgba.dylib │ │ │ │ │ ├── unorm16_rgbx.dylib │ │ │ │ │ ├── unorm8_1rgb.dylib │ │ │ │ │ ├── unorm8_a.dylib │ │ │ │ │ ├── unorm8_argb.dylib │ │ │ │ │ ├── unorm8_bgr1.dylib │ │ │ │ │ ├── unorm8_bgra.dylib │ │ │ │ │ ├── unorm8_i.dylib │ │ │ │ │ ├── unorm8_rgba.dylib │ │ │ │ │ ├── unorm8_rgbx.dylib │ │ │ │ │ └── unorm8_rgx.dylib │ │ │ │ ├── Legacy │ │ │ │ │ └── libcl2module.dylib │ │ │ │ ├── PTX.dylib │ │ │ │ ├── PTXSM1X.dylib │ │ │ │ ├── Vectorizer.dylib │ │ │ │ ├── libCLVMAMDilPlugin.dylib │ │ │ │ ├── libCLVMAMDil_r700Plugin.dylib │ │ │ │ ├── libCLVMCPUPlugin.dylib │ │ │ │ ├── libCLVMIGILPlugin.dylib │ │ │ │ ├── libCLVMPTXPlugin.dylib │ │ │ │ ├── libCLVMPTXSM1XPlugin.dylib │ │ │ │ ├── libcl2module.dylib │ │ │ │ └── libcldcpuengine.dylib │ │ │ └── OpenCL │ │ └── Current │ └── module.map ├── Project.xcconfig ├── addons.make ├── bin │ ├── data │ │ ├── .gitkeep │ │ ├── faces │ │ │ ├── MF0907_1100_00F.tiff │ │ │ ├── MF0907_1100_30L.tiff │ │ │ ├── MF0907_1100_30R.tiff │ │ │ ├── MF0907_1100_AN.tiff │ │ │ ├── MF0907_1100_CO.tiff │ │ │ ├── MF0907_1100_DI.tiff │ │ │ ├── MF0907_1100_FE.tiff │ │ │ ├── MF0907_1100_HA.tiff │ │ │ ├── MF0907_1100_NE.tiff │ │ │ ├── MF0907_1100_SA.tiff │ │ │ ├── MF0907_1100_SU.tiff │ │ │ ├── MF0907_2201_00F.tiff │ │ │ ├── MF0907_2201_DI.tiff │ │ │ ├── MF0907_2201_FE.tiff │ │ │ ├── MF0907_2201_HA.tiff │ │ │ ├── MF0907_2201_NE.tiff │ │ │ ├── MF0907_2201_SA.tiff │ │ │ ├── MF0907_2201_SU.tiff │ │ │ ├── MF0908_1100_00F.tiff │ │ │ ├── MF0908_1100_30L.tiff │ │ │ ├── MF0908_1100_30R.tiff │ │ │ ├── MF0908_1100_45R.tiff │ │ │ ├── MF0908_1100_NE.tiff │ │ │ ├── MF0908_2101_30L.tiff │ │ │ ├── MF0909_1100_00F.tiff │ │ │ ├── MF0909_1100_30L.tiff │ │ │ ├── MF0909_1100_30R.tiff │ │ │ ├── MF0909_1100_NE.tiff │ │ │ ├── MF0909_2201_00F.tiff │ │ │ ├── MF0909_2201_NE.tiff │ │ │ ├── MF0910_1100_00F.tiff │ │ │ ├── MF0910_1100_30L.tiff │ │ │ ├── MF0910_1100_NE.tiff │ │ │ ├── MF0910_2201_00F.tiff │ │ │ ├── MF0910_2201_30R.tiff │ │ │ ├── MF0910_2201_NE.tiff │ │ │ ├── MF0911_1100_00F.tiff │ │ │ ├── MF0911_1100_30L.tiff │ │ │ ├── MF0911_1100_30R.tiff │ │ │ ├── MF0911_1100_NE.tiff │ │ │ ├── MF0911_2101_00F.tiff │ │ │ ├── MF0911_2101_30L.tiff │ │ │ ├── MF0911_2101_30R.tiff │ │ │ ├── MF0911_2101_NE.tiff │ │ │ ├── MF0912_1100_00F.tiff │ │ │ ├── MF0912_1100_30L.tiff │ │ │ ├── MF0912_1100_30R.tiff │ │ │ ├── MF0912_1100_NE.tiff │ │ │ ├── MF0912_2200_00F.tiff │ │ │ ├── MF0912_2200_30L.tiff │ │ │ ├── MF0912_2200_30R.tiff │ │ │ ├── MF0912_2200_NE.tiff │ │ │ ├── MF0913_1100_00F.tiff │ │ │ ├── MF0913_1100_30L.tiff │ │ │ ├── MF0913_1100_30R.tiff │ │ │ ├── MF0913_1100_NE.tiff │ │ │ ├── MF0914_1100_00F.tiff │ │ │ ├── MF0914_1100_30L.tiff │ │ │ ├── MF0914_1100_30R.tiff │ │ │ ├── MF0914_2200_00F.tiff │ │ │ ├── MF0914_2200_30L.tiff │ │ │ ├── MF0914_2200_30R.tiff │ │ │ ├── MF0914_2200_NE.tiff │ │ │ ├── MF0915_1100_00F.tiff │ │ │ ├── MF0915_1100_30L.tiff │ │ │ ├── MF0915_1100_30R.tiff │ │ │ ├── MF0915_1100_NE.tiff │ │ │ ├── MF0915_2200_00F.tiff │ │ │ ├── MF0915_2200_30L.tiff │ │ │ ├── MF0915_2200_30R.tiff │ │ │ ├── MF0915_2200_45L.tiff │ │ │ ├── MF0915_2200_NE.tiff │ │ │ ├── MF0916_1100_00F.tiff │ │ │ ├── MF0916_1100_30L.tiff │ │ │ ├── MF0916_1100_30R.tiff │ │ │ ├── MF0916_1100_NE.tiff │ │ │ ├── MF0916_2201_00F.tiff │ │ │ ├── MF0916_2201_30L.tiff │ │ │ ├── MF0917_1100_00F.tiff │ │ │ ├── MF0917_1100_30L.tiff │ │ │ ├── MF0917_1100_NE.tiff │ │ │ ├── MF0917_2201_00F.tiff │ │ │ ├── MF0917_2201_30L.tiff │ │ │ ├── MF0917_2201_30R.tiff │ │ │ ├── MF0917_2201_NE.tiff │ │ │ ├── MF0918_1100_00F.tiff │ │ │ ├── MF0918_1100_30L.tiff │ │ │ ├── MF0918_1100_30R.tiff │ │ │ ├── MF0918_1100_NE.tiff │ │ │ ├── MF0918_2200_00F.tiff │ │ │ ├── MF0918_2200_30R.tiff │ │ │ ├── MF0918_2200_NE.tiff │ │ │ ├── MF0918_3310_00F.tiff │ │ │ ├── MF0918_3310_30L.tiff │ │ │ ├── MF0918_3310_NE.tiff │ │ │ ├── MM0901_1100_00F.tiff │ │ │ ├── MM0901_1100_30L.tiff │ │ │ ├── MM0901_1100_30R.tiff │ │ │ ├── MM0902_1100_00F.tiff │ │ │ ├── MM0902_1100_30R.tiff │ │ │ ├── MM0902_1100_NE.tiff │ │ │ ├── MM0902_2201_00F.tiff │ │ │ ├── MM0902_2201_30L.tiff │ │ │ ├── MM0902_2201_30R.tiff │ │ │ ├── MM0903_1100_00F.tiff │ │ │ ├── MM0903_1100_30R.tiff │ │ │ ├── MM0903_1100_NE.tiff │ │ │ ├── MM0903_2201_00F.tiff │ │ │ ├── MM0903_2201_30L.tiff │ │ │ ├── MM0904_1101_00F.tiff │ │ │ ├── MM0904_1101_30L.tiff │ │ │ ├── MM0904_1101_30R.tiff │ │ │ ├── MM0904_1101_NE.tiff │ │ │ ├── MM0904_2200_00F.tiff │ │ │ ├── MM0904_2200_30L.tiff │ │ │ ├── MM0904_2200_30R.tiff │ │ │ ├── MM0904_2201_00F.tiff │ │ │ ├── MM0904_2201_30R.tiff │ │ │ ├── MM0904_2201_NE.tiff │ │ │ ├── MM0905_1110_00F.tiff │ │ │ ├── MM0905_1110_30L.tiff │ │ │ ├── MM0905_1110_30R.tiff │ │ │ ├── MM0905_2111_00F.tiff │ │ │ ├── MM0905_2111_30L.tiff │ │ │ ├── MM0905_2111_30R.tiff │ │ │ ├── MM0906_1100_00F.tiff │ │ │ ├── MM0906_1100_30L.tiff │ │ │ ├── MM0906_1100_30R.tiff │ │ │ ├── MM0906_1100_NE.tiff │ │ │ ├── MM0906_2101_00F.tiff │ │ │ ├── MM0906_2101_30R.tiff │ │ │ └── MM0906_2101_NE.tiff │ │ ├── haarcascade_frontalface_alt2.xml │ │ └── model_fisher_132_faces.yml │ └── exampleDebug.app │ │ └── Contents │ │ ├── Frameworks │ │ └── GLUT.framework │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── copy.h │ │ │ ├── extrude.h │ │ │ ├── glsmap.h │ │ │ ├── glsmapint.h │ │ │ ├── glut.h │ │ │ ├── glutbitmap.h │ │ │ ├── glutf90.h │ │ │ ├── glutstroke.h │ │ │ ├── gutil.h │ │ │ ├── intersect.h │ │ │ ├── port.h │ │ │ ├── rot.h │ │ │ ├── segment.h │ │ │ ├── tube.h │ │ │ ├── tube_gc.h │ │ │ └── vvector.h │ │ │ ├── Resources │ │ │ ├── Caution.tiff │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── blankCursor.tiff │ │ │ ├── bottomCursor.tiff │ │ │ ├── bottomleftCursor.tiff │ │ │ ├── bottomrightCursor.tiff │ │ │ ├── crossCursor.tiff │ │ │ ├── cycleCursor.tiff │ │ │ ├── destroyCursor.tiff │ │ │ ├── fingerCursor.tiff │ │ │ ├── helpCursor.tiff │ │ │ ├── leftCursor.tiff │ │ │ ├── leftRightCursor.tiff │ │ │ ├── rightArrowCursor.tiff │ │ │ ├── rightCursor.tiff │ │ │ ├── sprayCursor.tiff │ │ │ ├── topCursor.tiff │ │ │ ├── topleftCursor.tiff │ │ │ ├── toprightCursor.tiff │ │ │ ├── upDownCursor.tiff │ │ │ └── waitCursor.tiff │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ │ ├── copy.h │ │ │ │ ├── extrude.h │ │ │ │ ├── glsmap.h │ │ │ │ ├── glsmapint.h │ │ │ │ ├── glut.h │ │ │ │ ├── glutbitmap.h │ │ │ │ ├── glutf90.h │ │ │ │ ├── glutstroke.h │ │ │ │ ├── gutil.h │ │ │ │ ├── intersect.h │ │ │ │ ├── port.h │ │ │ │ ├── rot.h │ │ │ │ ├── segment.h │ │ │ │ ├── tube.h │ │ │ │ ├── tube_gc.h │ │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ │ ├── Caution.tiff │ │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── blankCursor.tiff │ │ │ │ ├── bottomCursor.tiff │ │ │ │ ├── bottomleftCursor.tiff │ │ │ │ ├── bottomrightCursor.tiff │ │ │ │ ├── crossCursor.tiff │ │ │ │ ├── cycleCursor.tiff │ │ │ │ ├── destroyCursor.tiff │ │ │ │ ├── fingerCursor.tiff │ │ │ │ ├── helpCursor.tiff │ │ │ │ ├── leftCursor.tiff │ │ │ │ ├── leftRightCursor.tiff │ │ │ │ ├── rightArrowCursor.tiff │ │ │ │ ├── rightCursor.tiff │ │ │ │ ├── sprayCursor.tiff │ │ │ │ ├── topCursor.tiff │ │ │ │ ├── topleftCursor.tiff │ │ │ │ ├── toprightCursor.tiff │ │ │ │ ├── upDownCursor.tiff │ │ │ │ └── waitCursor.tiff │ │ │ └── Current │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── copy.h │ │ │ ├── extrude.h │ │ │ ├── glsmap.h │ │ │ ├── glsmapint.h │ │ │ ├── glut.h │ │ │ ├── glutbitmap.h │ │ │ ├── glutf90.h │ │ │ ├── glutstroke.h │ │ │ ├── gutil.h │ │ │ ├── intersect.h │ │ │ ├── port.h │ │ │ ├── rot.h │ │ │ ├── segment.h │ │ │ ├── tube.h │ │ │ ├── tube_gc.h │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ ├── Caution.tiff │ │ │ ├── English.lproj │ │ │ ├── GLUT.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTClipboard.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTPreferences.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTUI.strings │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── blankCursor.tiff │ │ │ ├── bottomCursor.tiff │ │ │ ├── bottomleftCursor.tiff │ │ │ ├── bottomrightCursor.tiff │ │ │ ├── crossCursor.tiff │ │ │ ├── cycleCursor.tiff │ │ │ ├── destroyCursor.tiff │ │ │ ├── fingerCursor.tiff │ │ │ ├── helpCursor.tiff │ │ │ ├── leftCursor.tiff │ │ │ ├── leftRightCursor.tiff │ │ │ ├── rightArrowCursor.tiff │ │ │ ├── rightCursor.tiff │ │ │ ├── sprayCursor.tiff │ │ │ ├── topCursor.tiff │ │ │ ├── topleftCursor.tiff │ │ │ ├── toprightCursor.tiff │ │ │ ├── upDownCursor.tiff │ │ │ └── waitCursor.tiff │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── exampleDebug │ │ └── libfmodex.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ └── icon-debug.icns ├── config.make ├── example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── stephan.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example Debug.xcscheme │ │ │ └── example Release.xcscheme │ └── xcuserdata │ │ └── stephan.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── libz.dylib ├── openFrameworks-Info.plist ├── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── yaml-cpp.a ├── readme.md └── src ├── ofxFaceRecognizer.cpp └── ofxFaceRecognizer.h /Screen_Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/Screen_Shot.png -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/OpenCL.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /example/OpenCL.framework/OpenCL: -------------------------------------------------------------------------------- 1 | Versions/Current/OpenCL -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Headers/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Headers/cl.h -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Headers/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Headers/cl_ext.h -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Headers/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Headers/cl_gl.h -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Headers/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Headers/cl_gl_ext.h -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Headers/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Headers/cl_platform.h -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Headers/gcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Headers/gcl.h -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Headers/gcl_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Headers/gcl_priv.h -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Headers/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Headers/opencl.h -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/AMDil.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/AMDil.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/AMDil_r700.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/AMDil_r700.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/IGIL.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/IGIL.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_i.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_i.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_rgbx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_rgbx.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_rgx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_rgx.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_rx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/float_rx.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/half_i.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/half_i.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/half_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/half_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/half_rgbx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/half_rgbx.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/sfixed14_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/sfixed14_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/sint16_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/sint16_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/sint32_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/sint32_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/sint8_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/sint8_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/snorm16_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/snorm16_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/snorm8_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/snorm8_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/uint16_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/uint16_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/uint32_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/uint32_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/uint8_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/uint8_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm16_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm16_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm16_rgbx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm16_rgbx.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_1rgb.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_1rgb.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_a.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_a.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_argb.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_argb.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgr1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgr1.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_i.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_i.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgbx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgbx.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgx.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgx.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/Legacy/libcl2module.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/Legacy/libcl2module.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/PTX.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/PTX.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/PTXSM1X.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/PTXSM1X.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/Vectorizer.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/Vectorizer.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/libCLVMAMDilPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/libCLVMAMDilPlugin.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/libCLVMAMDil_r700Plugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/libCLVMAMDil_r700Plugin.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/libCLVMCPUPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/libCLVMCPUPlugin.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/libCLVMIGILPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/libCLVMIGILPlugin.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/libCLVMPTXPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/libCLVMPTXPlugin.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/libCLVMPTXSM1XPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/libCLVMPTXSM1XPlugin.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/libcl2module.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/libcl2module.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/A/OpenCL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/Versions/A/OpenCL -------------------------------------------------------------------------------- /example/OpenCL.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /example/OpenCL.framework/module.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/OpenCL.framework/module.map -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/addons.make -------------------------------------------------------------------------------- /example/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_AN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_AN.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_CO.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_CO.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_DI.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_DI.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_FE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_FE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_HA.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_HA.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_SA.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_SA.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_1100_SU.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_1100_SU.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_2201_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_2201_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_2201_DI.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_2201_DI.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_2201_FE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_2201_FE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_2201_HA.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_2201_HA.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_2201_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_2201_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_2201_SA.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_2201_SA.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0907_2201_SU.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0907_2201_SU.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0908_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0908_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0908_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0908_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0908_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0908_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0908_1100_45R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0908_1100_45R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0908_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0908_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0908_2101_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0908_2101_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0909_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0909_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0909_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0909_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0909_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0909_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0909_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0909_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0909_2201_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0909_2201_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0909_2201_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0909_2201_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0910_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0910_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0910_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0910_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0910_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0910_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0910_2201_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0910_2201_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0910_2201_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0910_2201_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0910_2201_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0910_2201_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0911_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0911_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0911_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0911_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0911_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0911_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0911_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0911_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0911_2101_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0911_2101_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0911_2101_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0911_2101_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0911_2101_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0911_2101_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0911_2101_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0911_2101_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0912_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0912_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0912_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0912_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0912_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0912_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0912_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0912_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0912_2200_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0912_2200_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0912_2200_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0912_2200_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0912_2200_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0912_2200_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0912_2200_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0912_2200_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0913_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0913_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0913_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0913_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0913_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0913_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0913_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0913_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0914_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0914_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0914_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0914_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0914_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0914_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0914_2200_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0914_2200_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0914_2200_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0914_2200_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0914_2200_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0914_2200_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0914_2200_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0914_2200_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_2200_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_2200_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_2200_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_2200_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_2200_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_2200_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_2200_45L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_2200_45L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0915_2200_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0915_2200_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0916_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0916_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0916_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0916_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0916_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0916_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0916_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0916_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0916_2201_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0916_2201_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0916_2201_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0916_2201_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0917_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0917_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0917_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0917_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0917_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0917_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0917_2201_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0917_2201_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0917_2201_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0917_2201_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0917_2201_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0917_2201_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0917_2201_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0917_2201_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_2200_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_2200_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_2200_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_2200_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_2200_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_2200_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_3310_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_3310_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_3310_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_3310_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MF0918_3310_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MF0918_3310_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0901_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0901_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0901_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0901_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0901_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0901_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0902_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0902_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0902_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0902_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0902_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0902_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0902_2201_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0902_2201_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0902_2201_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0902_2201_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0902_2201_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0902_2201_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0903_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0903_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0903_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0903_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0903_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0903_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0903_2201_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0903_2201_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0903_2201_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0903_2201_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_1101_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_1101_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_1101_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_1101_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_1101_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_1101_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_1101_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_1101_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_2200_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_2200_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_2200_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_2200_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_2200_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_2200_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_2201_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_2201_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_2201_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_2201_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0904_2201_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0904_2201_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0905_1110_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0905_1110_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0905_1110_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0905_1110_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0905_1110_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0905_1110_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0905_2111_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0905_2111_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0905_2111_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0905_2111_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0905_2111_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0905_2111_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0906_1100_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0906_1100_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0906_1100_30L.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0906_1100_30L.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0906_1100_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0906_1100_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0906_1100_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0906_1100_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0906_2101_00F.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0906_2101_00F.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0906_2101_30R.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0906_2101_30R.tiff -------------------------------------------------------------------------------- /example/bin/data/faces/MM0906_2101_NE.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/faces/MM0906_2101_NE.tiff -------------------------------------------------------------------------------- /example/bin/data/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /example/bin/data/model_fisher_132_faces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/data/model_fisher_132_faces.yml -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Info.plist -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/MacOS/exampleDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/MacOS/exampleDebug -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Resources/icon-debug.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/bin/exampleDebug.app/Contents/Resources/icon-debug.icns -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/xcuserdata/stephan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/example.xcodeproj/project.xcworkspace/xcuserdata/stephan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcuserdata/stephan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/example.xcodeproj/xcuserdata/stephan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example/libz.dylib: -------------------------------------------------------------------------------- 1 | libz.1.dylib -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /example/yaml-cpp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/example/yaml-cpp.a -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/readme.md -------------------------------------------------------------------------------- /src/ofxFaceRecognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/src/ofxFaceRecognizer.cpp -------------------------------------------------------------------------------- /src/ofxFaceRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antimodular/ofxFaceRecognizer/HEAD/src/ofxFaceRecognizer.h --------------------------------------------------------------------------------