├── README.md ├── demo.png ├── models ├── test │ ├── DEPN_deploy_1024.prototxt │ ├── DEPN_deploy_128.prototxt │ ├── DEPN_deploy_256.prototxt │ ├── DEPN_deploy_512.prototxt │ └── DEPN_deploy_64.prototxt └── train │ ├── DEPN_128.prototxt │ ├── DEPN_64.prototxt │ ├── solver.prototxt │ └── train_DEPN.sh ├── resources ├── batch_norm_absorb.py ├── caffe_traininglayers.py ├── caffe_traininglayers.pyc ├── conv_into_fc.py ├── magic_init │ ├── LICENSE │ ├── README.md │ ├── load.py │ ├── load.pyc │ ├── magic_init_mod.py │ └── measure_stat.py ├── prior_probs.npy ├── pts_in_hull.npy ├── softmax_cross_entropy_loss_layer.cpp ├── softmax_cross_entropy_loss_layer.cu └── softmax_cross_entropy_loss_layer.hpp ├── test.py └── test_img ├── gray ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg ├── refer ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.png └── result ├── 1.png ├── 2.png ├── 3.png └── 4.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/demo.png -------------------------------------------------------------------------------- /models/test/DEPN_deploy_1024.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/test/DEPN_deploy_1024.prototxt -------------------------------------------------------------------------------- /models/test/DEPN_deploy_128.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/test/DEPN_deploy_128.prototxt -------------------------------------------------------------------------------- /models/test/DEPN_deploy_256.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/test/DEPN_deploy_256.prototxt -------------------------------------------------------------------------------- /models/test/DEPN_deploy_512.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/test/DEPN_deploy_512.prototxt -------------------------------------------------------------------------------- /models/test/DEPN_deploy_64.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/test/DEPN_deploy_64.prototxt -------------------------------------------------------------------------------- /models/train/DEPN_128.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/train/DEPN_128.prototxt -------------------------------------------------------------------------------- /models/train/DEPN_64.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/train/DEPN_64.prototxt -------------------------------------------------------------------------------- /models/train/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/train/solver.prototxt -------------------------------------------------------------------------------- /models/train/train_DEPN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/models/train/train_DEPN.sh -------------------------------------------------------------------------------- /resources/batch_norm_absorb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/batch_norm_absorb.py -------------------------------------------------------------------------------- /resources/caffe_traininglayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/caffe_traininglayers.py -------------------------------------------------------------------------------- /resources/caffe_traininglayers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/caffe_traininglayers.pyc -------------------------------------------------------------------------------- /resources/conv_into_fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/conv_into_fc.py -------------------------------------------------------------------------------- /resources/magic_init/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/magic_init/LICENSE -------------------------------------------------------------------------------- /resources/magic_init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/magic_init/README.md -------------------------------------------------------------------------------- /resources/magic_init/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/magic_init/load.py -------------------------------------------------------------------------------- /resources/magic_init/load.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/magic_init/load.pyc -------------------------------------------------------------------------------- /resources/magic_init/magic_init_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/magic_init/magic_init_mod.py -------------------------------------------------------------------------------- /resources/magic_init/measure_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/magic_init/measure_stat.py -------------------------------------------------------------------------------- /resources/prior_probs.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/prior_probs.npy -------------------------------------------------------------------------------- /resources/pts_in_hull.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/pts_in_hull.npy -------------------------------------------------------------------------------- /resources/softmax_cross_entropy_loss_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/softmax_cross_entropy_loss_layer.cpp -------------------------------------------------------------------------------- /resources/softmax_cross_entropy_loss_layer.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/softmax_cross_entropy_loss_layer.cu -------------------------------------------------------------------------------- /resources/softmax_cross_entropy_loss_layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/resources/softmax_cross_entropy_loss_layer.hpp -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test.py -------------------------------------------------------------------------------- /test_img/gray/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/gray/1.jpg -------------------------------------------------------------------------------- /test_img/gray/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/gray/2.jpg -------------------------------------------------------------------------------- /test_img/gray/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/gray/3.jpg -------------------------------------------------------------------------------- /test_img/gray/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/gray/4.jpg -------------------------------------------------------------------------------- /test_img/refer/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/refer/1.jpg -------------------------------------------------------------------------------- /test_img/refer/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/refer/2.jpg -------------------------------------------------------------------------------- /test_img/refer/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/refer/3.jpg -------------------------------------------------------------------------------- /test_img/refer/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/refer/4.png -------------------------------------------------------------------------------- /test_img/result/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/result/1.png -------------------------------------------------------------------------------- /test_img/result/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/result/2.png -------------------------------------------------------------------------------- /test_img/result/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/result/3.png -------------------------------------------------------------------------------- /test_img/result/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chufengxiao/Example-based-Colorization-via-Dense-Encoding-Pyramids/HEAD/test_img/result/4.png --------------------------------------------------------------------------------