├── _config.yml ├── _layouts └── default.html ├── assets └── css │ └── style.scss ├── css └── deepisp.css ├── figures ├── 20161109_134254_gt_full.jpg ├── 20161109_134254_gt_p1.png ├── 20161109_134254_gt_p2.png ├── 20161109_134254_ll_ours_full.jpg ├── 20161109_134254_ll_ours_p1.png ├── 20161109_134254_ll_ours_p2.png ├── 20161109_134254_ll_raw_full.jpg ├── 20161109_134254_ll_raw_p1.png ├── 20161109_134254_ll_raw_p2.png ├── 20161109_134254_ll_sam_full.jpg ├── 20161109_134254_ll_sam_p1.png ├── 20161109_134254_ll_sam_p2.png ├── 20161110_125458_gt_full.jpg ├── 20161110_125458_gt_p1.png ├── 20161110_125458_gt_p2.png ├── 20161110_125458_ll_ours_full.jpg ├── 20161110_125458_ll_ours_p1.png ├── 20161110_125458_ll_ours_p2.png ├── 20161110_125458_ll_raw_full.jpg ├── 20161110_125458_ll_raw_p1.png ├── 20161110_125458_ll_raw_p2.png ├── 20161110_125458_ll_sam_full.jpg ├── 20161110_125458_ll_sam_p1.png ├── 20161110_125458_ll_sam_p2.png ├── 20161110_130544_gt_full.jpg ├── 20161110_130544_gt_p1.png ├── 20161110_130544_gt_p2.png ├── 20161110_130544_ll_ours_full.jpg ├── 20161110_130544_ll_ours_p1.png ├── 20161110_130544_ll_ours_p2.png ├── 20161110_130544_ll_raw_full.jpg ├── 20161110_130544_ll_raw_p1.png ├── 20161110_130544_ll_raw_p2.png ├── 20161110_130544_ll_sam_full.jpg ├── 20161110_130544_ll_sam_p1.png ├── 20161110_130544_ll_sam_p2.png ├── cutting_ll_and_hl.jpg ├── input_100.png ├── input_282.png ├── input_331.png ├── isp_dataset_results_bar_graph.pdf ├── mimic_isp.jpg ├── mturk_ui.pdf ├── net_architecture.pdf ├── ours_100.png ├── ours_282.png ├── ours_331.png ├── sem_100.png ├── sem_282.png ├── sem_331.png ├── target_100.png ├── target_282.png ├── target_331.png ├── teaser_gt_full.png ├── teaser_gt_p1.png ├── teaser_gt_p2.png ├── teaser_gt_p3.png ├── teaser_ll_ours_full.png ├── teaser_ll_ours_p1.png ├── teaser_ll_ours_p2.png ├── teaser_ll_ours_p3.png ├── teaser_ll_raw_full.png ├── teaser_ll_raw_p1.png ├── teaser_ll_raw_p2.png ├── teaser_ll_raw_p3.png ├── teaser_ll_sam_full.png ├── teaser_ll_sam_p1.png ├── teaser_ll_sam_p2.png ├── teaser_ll_sam_p3.png └── tmp.txt ├── files ├── pdf_icon.png ├── tar-icon.jpg └── tmp.txt ├── index.html.tmpt └── index.md /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; 5 | 6 | header { 7 | display: none; 8 | } 9 | -------------------------------------------------------------------------------- /css/deepisp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/css/deepisp.css -------------------------------------------------------------------------------- /figures/20161109_134254_gt_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_gt_full.jpg -------------------------------------------------------------------------------- /figures/20161109_134254_gt_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_gt_p1.png -------------------------------------------------------------------------------- /figures/20161109_134254_gt_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_gt_p2.png -------------------------------------------------------------------------------- /figures/20161109_134254_ll_ours_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_ours_full.jpg -------------------------------------------------------------------------------- /figures/20161109_134254_ll_ours_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_ours_p1.png -------------------------------------------------------------------------------- /figures/20161109_134254_ll_ours_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_ours_p2.png -------------------------------------------------------------------------------- /figures/20161109_134254_ll_raw_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_raw_full.jpg -------------------------------------------------------------------------------- /figures/20161109_134254_ll_raw_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_raw_p1.png -------------------------------------------------------------------------------- /figures/20161109_134254_ll_raw_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_raw_p2.png -------------------------------------------------------------------------------- /figures/20161109_134254_ll_sam_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_sam_full.jpg -------------------------------------------------------------------------------- /figures/20161109_134254_ll_sam_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_sam_p1.png -------------------------------------------------------------------------------- /figures/20161109_134254_ll_sam_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161109_134254_ll_sam_p2.png -------------------------------------------------------------------------------- /figures/20161110_125458_gt_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_gt_full.jpg -------------------------------------------------------------------------------- /figures/20161110_125458_gt_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_gt_p1.png -------------------------------------------------------------------------------- /figures/20161110_125458_gt_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_gt_p2.png -------------------------------------------------------------------------------- /figures/20161110_125458_ll_ours_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_ours_full.jpg -------------------------------------------------------------------------------- /figures/20161110_125458_ll_ours_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_ours_p1.png -------------------------------------------------------------------------------- /figures/20161110_125458_ll_ours_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_ours_p2.png -------------------------------------------------------------------------------- /figures/20161110_125458_ll_raw_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_raw_full.jpg -------------------------------------------------------------------------------- /figures/20161110_125458_ll_raw_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_raw_p1.png -------------------------------------------------------------------------------- /figures/20161110_125458_ll_raw_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_raw_p2.png -------------------------------------------------------------------------------- /figures/20161110_125458_ll_sam_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_sam_full.jpg -------------------------------------------------------------------------------- /figures/20161110_125458_ll_sam_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_sam_p1.png -------------------------------------------------------------------------------- /figures/20161110_125458_ll_sam_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_125458_ll_sam_p2.png -------------------------------------------------------------------------------- /figures/20161110_130544_gt_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_gt_full.jpg -------------------------------------------------------------------------------- /figures/20161110_130544_gt_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_gt_p1.png -------------------------------------------------------------------------------- /figures/20161110_130544_gt_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_gt_p2.png -------------------------------------------------------------------------------- /figures/20161110_130544_ll_ours_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_ours_full.jpg -------------------------------------------------------------------------------- /figures/20161110_130544_ll_ours_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_ours_p1.png -------------------------------------------------------------------------------- /figures/20161110_130544_ll_ours_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_ours_p2.png -------------------------------------------------------------------------------- /figures/20161110_130544_ll_raw_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_raw_full.jpg -------------------------------------------------------------------------------- /figures/20161110_130544_ll_raw_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_raw_p1.png -------------------------------------------------------------------------------- /figures/20161110_130544_ll_raw_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_raw_p2.png -------------------------------------------------------------------------------- /figures/20161110_130544_ll_sam_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_sam_full.jpg -------------------------------------------------------------------------------- /figures/20161110_130544_ll_sam_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_sam_p1.png -------------------------------------------------------------------------------- /figures/20161110_130544_ll_sam_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/20161110_130544_ll_sam_p2.png -------------------------------------------------------------------------------- /figures/cutting_ll_and_hl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/cutting_ll_and_hl.jpg -------------------------------------------------------------------------------- /figures/input_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/input_100.png -------------------------------------------------------------------------------- /figures/input_282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/input_282.png -------------------------------------------------------------------------------- /figures/input_331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/input_331.png -------------------------------------------------------------------------------- /figures/isp_dataset_results_bar_graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/isp_dataset_results_bar_graph.pdf -------------------------------------------------------------------------------- /figures/mimic_isp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/mimic_isp.jpg -------------------------------------------------------------------------------- /figures/mturk_ui.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/mturk_ui.pdf -------------------------------------------------------------------------------- /figures/net_architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/net_architecture.pdf -------------------------------------------------------------------------------- /figures/ours_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/ours_100.png -------------------------------------------------------------------------------- /figures/ours_282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/ours_282.png -------------------------------------------------------------------------------- /figures/ours_331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/ours_331.png -------------------------------------------------------------------------------- /figures/sem_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/sem_100.png -------------------------------------------------------------------------------- /figures/sem_282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/sem_282.png -------------------------------------------------------------------------------- /figures/sem_331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/sem_331.png -------------------------------------------------------------------------------- /figures/target_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/target_100.png -------------------------------------------------------------------------------- /figures/target_282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/target_282.png -------------------------------------------------------------------------------- /figures/target_331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/target_331.png -------------------------------------------------------------------------------- /figures/teaser_gt_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_gt_full.png -------------------------------------------------------------------------------- /figures/teaser_gt_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_gt_p1.png -------------------------------------------------------------------------------- /figures/teaser_gt_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_gt_p2.png -------------------------------------------------------------------------------- /figures/teaser_gt_p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_gt_p3.png -------------------------------------------------------------------------------- /figures/teaser_ll_ours_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_ours_full.png -------------------------------------------------------------------------------- /figures/teaser_ll_ours_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_ours_p1.png -------------------------------------------------------------------------------- /figures/teaser_ll_ours_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_ours_p2.png -------------------------------------------------------------------------------- /figures/teaser_ll_ours_p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_ours_p3.png -------------------------------------------------------------------------------- /figures/teaser_ll_raw_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_raw_full.png -------------------------------------------------------------------------------- /figures/teaser_ll_raw_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_raw_p1.png -------------------------------------------------------------------------------- /figures/teaser_ll_raw_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_raw_p2.png -------------------------------------------------------------------------------- /figures/teaser_ll_raw_p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_raw_p3.png -------------------------------------------------------------------------------- /figures/teaser_ll_sam_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_sam_full.png -------------------------------------------------------------------------------- /figures/teaser_ll_sam_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_sam_p1.png -------------------------------------------------------------------------------- /figures/teaser_ll_sam_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_sam_p2.png -------------------------------------------------------------------------------- /figures/teaser_ll_sam_p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/figures/teaser_ll_sam_p3.png -------------------------------------------------------------------------------- /figures/tmp.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /files/pdf_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/files/pdf_icon.png -------------------------------------------------------------------------------- /files/tar-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/files/tar-icon.jpg -------------------------------------------------------------------------------- /files/tmp.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index.html.tmpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/index.html.tmpt -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliSchwartz/DeepISP/HEAD/index.md --------------------------------------------------------------------------------