├── .gitignore ├── LICENSE ├── README.md ├── depthai_host_depth_estimation.py ├── doc └── img │ ├── onnxHitnetDepthEstimation.gif │ └── out.jpg ├── driving_stereo_test.py ├── hitnet ├── __init__.py └── hitnet.py ├── image_depth_estimation.py ├── models └── .gitkeep ├── requirements.txt └── video_depth_estimation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/README.md -------------------------------------------------------------------------------- /depthai_host_depth_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/depthai_host_depth_estimation.py -------------------------------------------------------------------------------- /doc/img/onnxHitnetDepthEstimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/doc/img/onnxHitnetDepthEstimation.gif -------------------------------------------------------------------------------- /doc/img/out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/doc/img/out.jpg -------------------------------------------------------------------------------- /driving_stereo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/driving_stereo_test.py -------------------------------------------------------------------------------- /hitnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/hitnet/__init__.py -------------------------------------------------------------------------------- /hitnet/hitnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/hitnet/hitnet.py -------------------------------------------------------------------------------- /image_depth_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/image_depth_estimation.py -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/requirements.txt -------------------------------------------------------------------------------- /video_depth_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-HITNET-Stereo-Depth-estimation/HEAD/video_depth_estimation.py --------------------------------------------------------------------------------