├── README.md ├── configs └── config.yaml ├── data_prepare ├── check_gt_normal.py ├── options.py ├── plane_utils.py ├── scannet_scene.py └── utils.py ├── depthnet ├── __init__.py ├── depthNet_model.py ├── depth_util.py ├── inverse_warp.py └── losses.py ├── docs ├── glab.css ├── google452faf8dbf57cf46.html ├── images │ ├── data_ico.jpg │ ├── paper_thumbnail.jpg │ ├── pipeline.png │ └── teaser.png └── index.html ├── eval.py ├── logger.py ├── scannet ├── __init__.py ├── dataloader_batch.py ├── dataloader_pixel_normal.py ├── make_cameras.py ├── make_list.py ├── preprocess.py ├── rm_data.py ├── test.txt ├── train_plane_view3_scans0_999_interval2_error01.txt ├── upload_data.py └── video_recons_scenes.txt ├── train.py └── utils ├── __init__.py ├── disp.py ├── metric.py ├── misc.py └── net_tools.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/README.md -------------------------------------------------------------------------------- /configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/configs/config.yaml -------------------------------------------------------------------------------- /data_prepare/check_gt_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/data_prepare/check_gt_normal.py -------------------------------------------------------------------------------- /data_prepare/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/data_prepare/options.py -------------------------------------------------------------------------------- /data_prepare/plane_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/data_prepare/plane_utils.py -------------------------------------------------------------------------------- /data_prepare/scannet_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/data_prepare/scannet_scene.py -------------------------------------------------------------------------------- /data_prepare/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/data_prepare/utils.py -------------------------------------------------------------------------------- /depthnet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depthnet/depthNet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/depthnet/depthNet_model.py -------------------------------------------------------------------------------- /depthnet/depth_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/depthnet/depth_util.py -------------------------------------------------------------------------------- /depthnet/inverse_warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/depthnet/inverse_warp.py -------------------------------------------------------------------------------- /depthnet/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/depthnet/losses.py -------------------------------------------------------------------------------- /docs/glab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/docs/glab.css -------------------------------------------------------------------------------- /docs/google452faf8dbf57cf46.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/docs/google452faf8dbf57cf46.html -------------------------------------------------------------------------------- /docs/images/data_ico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/docs/images/data_ico.jpg -------------------------------------------------------------------------------- /docs/images/paper_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/docs/images/paper_thumbnail.jpg -------------------------------------------------------------------------------- /docs/images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/docs/images/pipeline.png -------------------------------------------------------------------------------- /docs/images/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/docs/images/teaser.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/docs/index.html -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/eval.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/logger.py -------------------------------------------------------------------------------- /scannet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scannet/dataloader_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/dataloader_batch.py -------------------------------------------------------------------------------- /scannet/dataloader_pixel_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/dataloader_pixel_normal.py -------------------------------------------------------------------------------- /scannet/make_cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/make_cameras.py -------------------------------------------------------------------------------- /scannet/make_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/make_list.py -------------------------------------------------------------------------------- /scannet/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/preprocess.py -------------------------------------------------------------------------------- /scannet/rm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/rm_data.py -------------------------------------------------------------------------------- /scannet/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/test.txt -------------------------------------------------------------------------------- /scannet/train_plane_view3_scans0_999_interval2_error01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/train_plane_view3_scans0_999_interval2_error01.txt -------------------------------------------------------------------------------- /scannet/upload_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/scannet/upload_data.py -------------------------------------------------------------------------------- /scannet/video_recons_scenes.txt: -------------------------------------------------------------------------------- 1 | scene0708_00 -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/disp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/utils/disp.py -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/utils/misc.py -------------------------------------------------------------------------------- /utils/net_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxlong0/CNMNet/HEAD/utils/net_tools.py --------------------------------------------------------------------------------