├── .gitignore ├── EyeLab.png ├── LICENSE ├── README.md ├── audacity.png ├── audio.png ├── cinder ├── resources │ └── firmware.bin └── src │ └── PS4EYECaptureApp.cpp ├── driver ├── include │ ├── ps4eye.h │ └── ps4eye_regs.h └── src │ └── ps4eye.cpp ├── header.png ├── highlevel.jpg ├── openframeworks ├── libusb.h ├── main.cpp ├── ofApp.cpp ├── ofApp.h ├── ps4eye.cpp ├── ps4eye.h └── ps4eye_regs.h ├── tinder0.png ├── tinder1.png ├── tinder2.png ├── tinder3.png ├── tinder4.png ├── video.png └── xcode.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /EyeLab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/EyeLab.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/README.md -------------------------------------------------------------------------------- /audacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/audacity.png -------------------------------------------------------------------------------- /audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/audio.png -------------------------------------------------------------------------------- /cinder/resources/firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/cinder/resources/firmware.bin -------------------------------------------------------------------------------- /cinder/src/PS4EYECaptureApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/cinder/src/PS4EYECaptureApp.cpp -------------------------------------------------------------------------------- /driver/include/ps4eye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/driver/include/ps4eye.h -------------------------------------------------------------------------------- /driver/include/ps4eye_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/driver/include/ps4eye_regs.h -------------------------------------------------------------------------------- /driver/src/ps4eye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/driver/src/ps4eye.cpp -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/header.png -------------------------------------------------------------------------------- /highlevel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/highlevel.jpg -------------------------------------------------------------------------------- /openframeworks/libusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/openframeworks/libusb.h -------------------------------------------------------------------------------- /openframeworks/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/openframeworks/main.cpp -------------------------------------------------------------------------------- /openframeworks/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/openframeworks/ofApp.cpp -------------------------------------------------------------------------------- /openframeworks/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/openframeworks/ofApp.h -------------------------------------------------------------------------------- /openframeworks/ps4eye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/openframeworks/ps4eye.cpp -------------------------------------------------------------------------------- /openframeworks/ps4eye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/openframeworks/ps4eye.h -------------------------------------------------------------------------------- /openframeworks/ps4eye_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/openframeworks/ps4eye_regs.h -------------------------------------------------------------------------------- /tinder0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/tinder0.png -------------------------------------------------------------------------------- /tinder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/tinder1.png -------------------------------------------------------------------------------- /tinder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/tinder2.png -------------------------------------------------------------------------------- /tinder3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/tinder3.png -------------------------------------------------------------------------------- /tinder4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/tinder4.png -------------------------------------------------------------------------------- /video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/video.png -------------------------------------------------------------------------------- /xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigboss-ps3dev/PS4EYECam/HEAD/xcode.png --------------------------------------------------------------------------------