├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── LeapUVC Firmware Tools ├── Device Restoration Tools │ ├── LM_FirmwareReset_Win.exe │ └── RestoreDevice.exe └── UnlockDevice.exe ├── LeapUVC-Manual.pdf ├── Matlab ├── README.md ├── displayStereo.m ├── getLeapFrame.m ├── imageViewer.m └── startLeapStreaming.m ├── Python ├── README.md ├── arucoExample.py ├── cameraControlExample.py ├── leapuvc.py ├── minimumExample.py ├── multideviceExample.py └── stereoExample.py └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "C"] 2 | path = C 3 | url = https://github.com/leapmotion/rawviewer 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/LICENSE -------------------------------------------------------------------------------- /LeapUVC Firmware Tools/Device Restoration Tools/LM_FirmwareReset_Win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/LeapUVC Firmware Tools/Device Restoration Tools/LM_FirmwareReset_Win.exe -------------------------------------------------------------------------------- /LeapUVC Firmware Tools/Device Restoration Tools/RestoreDevice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/LeapUVC Firmware Tools/Device Restoration Tools/RestoreDevice.exe -------------------------------------------------------------------------------- /LeapUVC Firmware Tools/UnlockDevice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/LeapUVC Firmware Tools/UnlockDevice.exe -------------------------------------------------------------------------------- /LeapUVC-Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/LeapUVC-Manual.pdf -------------------------------------------------------------------------------- /Matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Matlab/README.md -------------------------------------------------------------------------------- /Matlab/displayStereo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Matlab/displayStereo.m -------------------------------------------------------------------------------- /Matlab/getLeapFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Matlab/getLeapFrame.m -------------------------------------------------------------------------------- /Matlab/imageViewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Matlab/imageViewer.m -------------------------------------------------------------------------------- /Matlab/startLeapStreaming.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Matlab/startLeapStreaming.m -------------------------------------------------------------------------------- /Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Python/README.md -------------------------------------------------------------------------------- /Python/arucoExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Python/arucoExample.py -------------------------------------------------------------------------------- /Python/cameraControlExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Python/cameraControlExample.py -------------------------------------------------------------------------------- /Python/leapuvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Python/leapuvc.py -------------------------------------------------------------------------------- /Python/minimumExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Python/minimumExample.py -------------------------------------------------------------------------------- /Python/multideviceExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Python/multideviceExample.py -------------------------------------------------------------------------------- /Python/stereoExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/Python/stereoExample.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leapmotion/leapuvc/HEAD/README.md --------------------------------------------------------------------------------