├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── esp32_webcam └── esp32_webcam.ino └── python_notebooks ├── esp32_stereo_cam.ipynb ├── left_eye_30cm.jpg ├── left_eye_50cm.jpg ├── right_eye_30cm.jpg ├── right_eye_50cm.jpg ├── stereo_image_utils.py └── stereo_image_v6.ipynb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/README.md -------------------------------------------------------------------------------- /esp32_webcam/esp32_webcam.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/esp32_webcam/esp32_webcam.ino -------------------------------------------------------------------------------- /python_notebooks/esp32_stereo_cam.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/python_notebooks/esp32_stereo_cam.ipynb -------------------------------------------------------------------------------- /python_notebooks/left_eye_30cm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/python_notebooks/left_eye_30cm.jpg -------------------------------------------------------------------------------- /python_notebooks/left_eye_50cm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/python_notebooks/left_eye_50cm.jpg -------------------------------------------------------------------------------- /python_notebooks/right_eye_30cm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/python_notebooks/right_eye_30cm.jpg -------------------------------------------------------------------------------- /python_notebooks/right_eye_50cm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/python_notebooks/right_eye_50cm.jpg -------------------------------------------------------------------------------- /python_notebooks/stereo_image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/python_notebooks/stereo_image_utils.py -------------------------------------------------------------------------------- /python_notebooks/stereo_image_v6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanrandall/esp32_stereo_camera/HEAD/python_notebooks/stereo_image_v6.ipynb --------------------------------------------------------------------------------