├── .gitignore ├── Prototyping ├── Camera │ ├── CAD │ │ ├── Bottom │ │ │ ├── Camera support 2D bottom.DXF │ │ │ ├── Camera support 2D bottom.SLDPRT │ │ │ └── Camera support 2D bottom.eps │ │ └── Top │ │ │ ├── Camera support 2D top.DXF │ │ │ ├── Camera support 2D top.SLDPRT │ │ │ └── Camera support 2D top.eps │ ├── ESP8266 │ │ ├── Pinout ESP12E NodeMCU CmuCam5.jpg │ │ └── vrtracker_websocket │ │ │ ├── camera.bin │ │ │ ├── camera1.bin │ │ │ └── vrtracker_websocket.ino │ ├── Electronic │ │ ├── BOM.csv │ │ └── Eagle PCB │ │ │ ├── 1455413453956-wemos.lbr │ │ │ ├── lib.l#1 │ │ │ ├── lib.l#2 │ │ │ ├── lib.l#3 │ │ │ ├── lib.l#4 │ │ │ └── lib.lbr │ └── PixyCam Firmware │ │ └── firmware_IRLOCKpixy_1.0.1.hex ├── Gateway │ ├── .idea │ │ ├── .name │ │ ├── Gateway.iml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── 18fe34e0bef6.npz │ ├── 18fe34e0c134.npz │ ├── 18fe34e0c26e.npz │ ├── 18fe34e0c634.npz │ ├── 5ccf7f015c8.npz │ ├── 5ccf7fc2917.npz │ ├── Calibration.py │ ├── Calibration.pyc │ ├── Camera.py │ ├── Camera.pyc │ ├── Debug.py │ ├── Point2D.py │ ├── Point2D.pyc │ ├── Point3D.py │ ├── Point3D.pyc │ ├── Tag.py │ ├── Tag.pyc │ ├── User.py │ ├── User.pyc │ ├── calibration web interface │ │ ├── images │ │ │ └── logo_normal.jpg │ │ ├── index.html │ │ └── lib │ │ │ └── jquery.min.js │ ├── compute.py │ ├── compute.pyc │ ├── utils │ │ ├── Observer.py │ │ ├── Observer.pyc │ │ ├── Synchronization.py │ │ ├── Synchronization.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── vrtracker.py │ ├── websocket_server.py │ ├── websocketserver.py │ └── websocketserver.pyc └── Tag │ └── vrtracker_tag │ ├── tag.bin │ └── vrtracker_tag.ino └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/.gitignore -------------------------------------------------------------------------------- /Prototyping/Camera/CAD/Bottom/Camera support 2D bottom.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/CAD/Bottom/Camera support 2D bottom.DXF -------------------------------------------------------------------------------- /Prototyping/Camera/CAD/Bottom/Camera support 2D bottom.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/CAD/Bottom/Camera support 2D bottom.SLDPRT -------------------------------------------------------------------------------- /Prototyping/Camera/CAD/Bottom/Camera support 2D bottom.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/CAD/Bottom/Camera support 2D bottom.eps -------------------------------------------------------------------------------- /Prototyping/Camera/CAD/Top/Camera support 2D top.DXF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/CAD/Top/Camera support 2D top.DXF -------------------------------------------------------------------------------- /Prototyping/Camera/CAD/Top/Camera support 2D top.SLDPRT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/CAD/Top/Camera support 2D top.SLDPRT -------------------------------------------------------------------------------- /Prototyping/Camera/CAD/Top/Camera support 2D top.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/CAD/Top/Camera support 2D top.eps -------------------------------------------------------------------------------- /Prototyping/Camera/ESP8266/Pinout ESP12E NodeMCU CmuCam5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/ESP8266/Pinout ESP12E NodeMCU CmuCam5.jpg -------------------------------------------------------------------------------- /Prototyping/Camera/ESP8266/vrtracker_websocket/camera.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/ESP8266/vrtracker_websocket/camera.bin -------------------------------------------------------------------------------- /Prototyping/Camera/ESP8266/vrtracker_websocket/camera1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/ESP8266/vrtracker_websocket/camera1.bin -------------------------------------------------------------------------------- /Prototyping/Camera/ESP8266/vrtracker_websocket/vrtracker_websocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/ESP8266/vrtracker_websocket/vrtracker_websocket.ino -------------------------------------------------------------------------------- /Prototyping/Camera/Electronic/BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/Electronic/BOM.csv -------------------------------------------------------------------------------- /Prototyping/Camera/Electronic/Eagle PCB/1455413453956-wemos.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/Electronic/Eagle PCB/1455413453956-wemos.lbr -------------------------------------------------------------------------------- /Prototyping/Camera/Electronic/Eagle PCB/lib.l#1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/Electronic/Eagle PCB/lib.l#1 -------------------------------------------------------------------------------- /Prototyping/Camera/Electronic/Eagle PCB/lib.l#2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/Electronic/Eagle PCB/lib.l#2 -------------------------------------------------------------------------------- /Prototyping/Camera/Electronic/Eagle PCB/lib.l#3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/Electronic/Eagle PCB/lib.l#3 -------------------------------------------------------------------------------- /Prototyping/Camera/Electronic/Eagle PCB/lib.l#4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/Electronic/Eagle PCB/lib.l#4 -------------------------------------------------------------------------------- /Prototyping/Camera/Electronic/Eagle PCB/lib.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/Electronic/Eagle PCB/lib.lbr -------------------------------------------------------------------------------- /Prototyping/Camera/PixyCam Firmware/firmware_IRLOCKpixy_1.0.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Camera/PixyCam Firmware/firmware_IRLOCKpixy_1.0.1.hex -------------------------------------------------------------------------------- /Prototyping/Gateway/.idea/.name: -------------------------------------------------------------------------------- 1 | Gateway -------------------------------------------------------------------------------- /Prototyping/Gateway/.idea/Gateway.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/.idea/Gateway.iml -------------------------------------------------------------------------------- /Prototyping/Gateway/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/.idea/encodings.xml -------------------------------------------------------------------------------- /Prototyping/Gateway/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/.idea/misc.xml -------------------------------------------------------------------------------- /Prototyping/Gateway/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/.idea/modules.xml -------------------------------------------------------------------------------- /Prototyping/Gateway/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/.idea/vcs.xml -------------------------------------------------------------------------------- /Prototyping/Gateway/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/.idea/workspace.xml -------------------------------------------------------------------------------- /Prototyping/Gateway/18fe34e0bef6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/18fe34e0bef6.npz -------------------------------------------------------------------------------- /Prototyping/Gateway/18fe34e0c134.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/18fe34e0c134.npz -------------------------------------------------------------------------------- /Prototyping/Gateway/18fe34e0c26e.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/18fe34e0c26e.npz -------------------------------------------------------------------------------- /Prototyping/Gateway/18fe34e0c634.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/18fe34e0c634.npz -------------------------------------------------------------------------------- /Prototyping/Gateway/5ccf7f015c8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/5ccf7f015c8.npz -------------------------------------------------------------------------------- /Prototyping/Gateway/5ccf7fc2917.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/5ccf7fc2917.npz -------------------------------------------------------------------------------- /Prototyping/Gateway/Calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Calibration.py -------------------------------------------------------------------------------- /Prototyping/Gateway/Calibration.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Calibration.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/Camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Camera.py -------------------------------------------------------------------------------- /Prototyping/Gateway/Camera.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Camera.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/Debug.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DEGUG = True 5 | 6 | def print(): -------------------------------------------------------------------------------- /Prototyping/Gateway/Point2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Point2D.py -------------------------------------------------------------------------------- /Prototyping/Gateway/Point2D.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Point2D.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/Point3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Point3D.py -------------------------------------------------------------------------------- /Prototyping/Gateway/Point3D.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Point3D.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/Tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Tag.py -------------------------------------------------------------------------------- /Prototyping/Gateway/Tag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/Tag.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/User.py -------------------------------------------------------------------------------- /Prototyping/Gateway/User.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/User.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/calibration web interface/images/logo_normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/calibration web interface/images/logo_normal.jpg -------------------------------------------------------------------------------- /Prototyping/Gateway/calibration web interface/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/calibration web interface/index.html -------------------------------------------------------------------------------- /Prototyping/Gateway/calibration web interface/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/calibration web interface/lib/jquery.min.js -------------------------------------------------------------------------------- /Prototyping/Gateway/compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/compute.py -------------------------------------------------------------------------------- /Prototyping/Gateway/compute.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/compute.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/utils/Observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/utils/Observer.py -------------------------------------------------------------------------------- /Prototyping/Gateway/utils/Observer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/utils/Observer.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/utils/Synchronization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/utils/Synchronization.py -------------------------------------------------------------------------------- /Prototyping/Gateway/utils/Synchronization.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/utils/Synchronization.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/utils/__init__.py -------------------------------------------------------------------------------- /Prototyping/Gateway/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/utils/__init__.pyc -------------------------------------------------------------------------------- /Prototyping/Gateway/vrtracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/vrtracker.py -------------------------------------------------------------------------------- /Prototyping/Gateway/websocket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/websocket_server.py -------------------------------------------------------------------------------- /Prototyping/Gateway/websocketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/websocketserver.py -------------------------------------------------------------------------------- /Prototyping/Gateway/websocketserver.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Gateway/websocketserver.pyc -------------------------------------------------------------------------------- /Prototyping/Tag/vrtracker_tag/tag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Tag/vrtracker_tag/tag.bin -------------------------------------------------------------------------------- /Prototyping/Tag/vrtracker_tag/vrtracker_tag.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/Prototyping/Tag/vrtracker_tag/vrtracker_tag.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulesThuillier/VRTracker_Old/HEAD/README.md --------------------------------------------------------------------------------