├── .gitignore ├── .gitignore~ ├── .idea ├── depth.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Depth Map Prediction from a Single Image using a Multi-Scale Deep Network学习笔记.doc ├── Depth Map Prediction from a Single Image.pdf ├── LICENSE ├── README ├── common ├── __init__.py ├── __init__.pyc ├── configuration.py ├── configuration.pyc ├── imgutil.py ├── imgutil.pyc ├── logutil.py ├── logutil.pyc └── strhist.py ├── demo_nyud_depth_prediction.png ├── demo_nyud_rgb.jpg ├── demo_nyud_rgb1.jpg ├── models ├── .depth.conf.swp ├── .depth.py.swp ├── depth.conf ├── depth.py └── depth.pyc ├── net.py ├── net.pyc ├── pooling.py ├── pooling.pyc ├── test.py ├── theano_test_value_size.patch ├── thutil.py └── thutil.pyc /.gitignore: -------------------------------------------------------------------------------- 1 | weights/ 2 | -------------------------------------------------------------------------------- /.gitignore~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/.gitignore~ -------------------------------------------------------------------------------- /.idea/depth.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/.idea/depth.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Depth Map Prediction from a Single Image using a Multi-Scale Deep Network学习笔记.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/Depth Map Prediction from a Single Image using a Multi-Scale Deep Network学习笔记.doc -------------------------------------------------------------------------------- /Depth Map Prediction from a Single Image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/Depth Map Prediction from a Single Image.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/README -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/common/__init__.pyc -------------------------------------------------------------------------------- /common/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/common/configuration.py -------------------------------------------------------------------------------- /common/configuration.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/common/configuration.pyc -------------------------------------------------------------------------------- /common/imgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/common/imgutil.py -------------------------------------------------------------------------------- /common/imgutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/common/imgutil.pyc -------------------------------------------------------------------------------- /common/logutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/common/logutil.py -------------------------------------------------------------------------------- /common/logutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/common/logutil.pyc -------------------------------------------------------------------------------- /common/strhist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/common/strhist.py -------------------------------------------------------------------------------- /demo_nyud_depth_prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/demo_nyud_depth_prediction.png -------------------------------------------------------------------------------- /demo_nyud_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/demo_nyud_rgb.jpg -------------------------------------------------------------------------------- /demo_nyud_rgb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/demo_nyud_rgb1.jpg -------------------------------------------------------------------------------- /models/.depth.conf.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/models/.depth.conf.swp -------------------------------------------------------------------------------- /models/.depth.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/models/.depth.py.swp -------------------------------------------------------------------------------- /models/depth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/models/depth.conf -------------------------------------------------------------------------------- /models/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/models/depth.py -------------------------------------------------------------------------------- /models/depth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/models/depth.pyc -------------------------------------------------------------------------------- /net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/net.py -------------------------------------------------------------------------------- /net.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/net.pyc -------------------------------------------------------------------------------- /pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/pooling.py -------------------------------------------------------------------------------- /pooling.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/pooling.pyc -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/test.py -------------------------------------------------------------------------------- /theano_test_value_size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/theano_test_value_size.patch -------------------------------------------------------------------------------- /thutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/thutil.py -------------------------------------------------------------------------------- /thutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjimce/Depth-Map-Prediction/HEAD/thutil.pyc --------------------------------------------------------------------------------