├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── midas_predictor ├── __init__.py ├── midas_predictor.py └── midas_v2_1_small.onnx └── sample.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/MonocularDepthEstimator-Simple-Calibration/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/MonocularDepthEstimator-Simple-Calibration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/MonocularDepthEstimator-Simple-Calibration/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/MonocularDepthEstimator-Simple-Calibration/HEAD/main.py -------------------------------------------------------------------------------- /midas_predictor/__init__.py: -------------------------------------------------------------------------------- 1 | # MiDaS Predictor -------------------------------------------------------------------------------- /midas_predictor/midas_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/MonocularDepthEstimator-Simple-Calibration/HEAD/midas_predictor/midas_predictor.py -------------------------------------------------------------------------------- /midas_predictor/midas_v2_1_small.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/MonocularDepthEstimator-Simple-Calibration/HEAD/midas_predictor/midas_v2_1_small.onnx -------------------------------------------------------------------------------- /sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/MonocularDepthEstimator-Simple-Calibration/HEAD/sample.jpg --------------------------------------------------------------------------------