├── .gitignore ├── LICENSE ├── README.md ├── Test ├── Set14 │ ├── baboon.bmp │ ├── barbara.bmp │ ├── bridge.bmp │ ├── coastguard.bmp │ ├── comic.bmp │ ├── face.bmp │ ├── flowers.bmp │ ├── foreman.bmp │ ├── lenna.bmp │ ├── man.bmp │ ├── monarch.bmp │ ├── pepper.bmp │ ├── ppt3.bmp │ └── zebra.bmp └── Set5 │ ├── baby_GT.bmp │ ├── bird_GT.bmp │ ├── butterfly_GT.bmp │ ├── head_GT.bmp │ └── woman_GT.bmp ├── Train ├── t1.bmp ├── t10.bmp ├── t11.bmp ├── t12.bmp ├── t13.bmp ├── t14.bmp ├── t15.bmp ├── t16.bmp ├── t17.bmp ├── t18.bmp ├── t19.bmp ├── t2.bmp ├── t20.bmp ├── t21.bmp ├── t22.bmp ├── t23.bmp ├── t24.bmp ├── t25.bmp ├── t26.bmp ├── t27.bmp ├── t28.bmp ├── t29.bmp ├── t3.bmp ├── t30.bmp ├── t31.bmp ├── t32.bmp ├── t33.bmp ├── t34.bmp ├── t35.bmp ├── t36.bmp ├── t37.bmp ├── t38.bmp ├── t39.bmp ├── t4.bmp ├── t40.bmp ├── t42.bmp ├── t43.bmp ├── t44.bmp ├── t45.bmp ├── t46.bmp ├── t47.bmp ├── t48.bmp ├── t49.bmp ├── t5.bmp ├── t50.bmp ├── t51.bmp ├── t52.bmp ├── t53.bmp ├── t54.bmp ├── t55.bmp ├── t56.bmp ├── t57.bmp ├── t58.bmp ├── t59.bmp ├── t6.bmp ├── t60.bmp ├── t61.bmp ├── t62.bmp ├── t63.bmp ├── t64.bmp ├── t65.bmp ├── t66.bmp ├── t7.bmp ├── t8.bmp ├── t9.bmp ├── tt1.bmp ├── tt10.bmp ├── tt12.bmp ├── tt13.bmp ├── tt14.bmp ├── tt15.bmp ├── tt16.bmp ├── tt17.bmp ├── tt18.bmp ├── tt19.bmp ├── tt2.bmp ├── tt20.bmp ├── tt21.bmp ├── tt22.bmp ├── tt23.bmp ├── tt24.bmp ├── tt25.bmp ├── tt26.bmp ├── tt27.bmp ├── tt3.bmp ├── tt4.bmp ├── tt5.bmp ├── tt6.bmp ├── tt7.bmp ├── tt8.bmp └── tt9.bmp ├── checkpoint └── srcnn_21 │ ├── SRCNN.model-2550000 │ ├── SRCNN.model-2550000.meta │ └── checkpoint ├── main.py ├── model.py ├── result ├── bicubic.png ├── orig.png └── srcnn.png └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /Test/Set14/baboon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/baboon.bmp -------------------------------------------------------------------------------- /Test/Set14/barbara.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/barbara.bmp -------------------------------------------------------------------------------- /Test/Set14/bridge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/bridge.bmp -------------------------------------------------------------------------------- /Test/Set14/coastguard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/coastguard.bmp -------------------------------------------------------------------------------- /Test/Set14/comic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/comic.bmp -------------------------------------------------------------------------------- /Test/Set14/face.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/face.bmp -------------------------------------------------------------------------------- /Test/Set14/flowers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/flowers.bmp -------------------------------------------------------------------------------- /Test/Set14/foreman.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/foreman.bmp -------------------------------------------------------------------------------- /Test/Set14/lenna.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/lenna.bmp -------------------------------------------------------------------------------- /Test/Set14/man.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/man.bmp -------------------------------------------------------------------------------- /Test/Set14/monarch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/monarch.bmp -------------------------------------------------------------------------------- /Test/Set14/pepper.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/pepper.bmp -------------------------------------------------------------------------------- /Test/Set14/ppt3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/ppt3.bmp -------------------------------------------------------------------------------- /Test/Set14/zebra.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set14/zebra.bmp -------------------------------------------------------------------------------- /Test/Set5/baby_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set5/baby_GT.bmp -------------------------------------------------------------------------------- /Test/Set5/bird_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set5/bird_GT.bmp -------------------------------------------------------------------------------- /Test/Set5/butterfly_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set5/butterfly_GT.bmp -------------------------------------------------------------------------------- /Test/Set5/head_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set5/head_GT.bmp -------------------------------------------------------------------------------- /Test/Set5/woman_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Test/Set5/woman_GT.bmp -------------------------------------------------------------------------------- /Train/t1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t1.bmp -------------------------------------------------------------------------------- /Train/t10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t10.bmp -------------------------------------------------------------------------------- /Train/t11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t11.bmp -------------------------------------------------------------------------------- /Train/t12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t12.bmp -------------------------------------------------------------------------------- /Train/t13.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t13.bmp -------------------------------------------------------------------------------- /Train/t14.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t14.bmp -------------------------------------------------------------------------------- /Train/t15.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t15.bmp -------------------------------------------------------------------------------- /Train/t16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t16.bmp -------------------------------------------------------------------------------- /Train/t17.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t17.bmp -------------------------------------------------------------------------------- /Train/t18.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t18.bmp -------------------------------------------------------------------------------- /Train/t19.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t19.bmp -------------------------------------------------------------------------------- /Train/t2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t2.bmp -------------------------------------------------------------------------------- /Train/t20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t20.bmp -------------------------------------------------------------------------------- /Train/t21.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t21.bmp -------------------------------------------------------------------------------- /Train/t22.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t22.bmp -------------------------------------------------------------------------------- /Train/t23.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t23.bmp -------------------------------------------------------------------------------- /Train/t24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t24.bmp -------------------------------------------------------------------------------- /Train/t25.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t25.bmp -------------------------------------------------------------------------------- /Train/t26.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t26.bmp -------------------------------------------------------------------------------- /Train/t27.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t27.bmp -------------------------------------------------------------------------------- /Train/t28.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t28.bmp -------------------------------------------------------------------------------- /Train/t29.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t29.bmp -------------------------------------------------------------------------------- /Train/t3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t3.bmp -------------------------------------------------------------------------------- /Train/t30.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t30.bmp -------------------------------------------------------------------------------- /Train/t31.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t31.bmp -------------------------------------------------------------------------------- /Train/t32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t32.bmp -------------------------------------------------------------------------------- /Train/t33.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t33.bmp -------------------------------------------------------------------------------- /Train/t34.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t34.bmp -------------------------------------------------------------------------------- /Train/t35.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t35.bmp -------------------------------------------------------------------------------- /Train/t36.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t36.bmp -------------------------------------------------------------------------------- /Train/t37.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t37.bmp -------------------------------------------------------------------------------- /Train/t38.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t38.bmp -------------------------------------------------------------------------------- /Train/t39.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t39.bmp -------------------------------------------------------------------------------- /Train/t4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t4.bmp -------------------------------------------------------------------------------- /Train/t40.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t40.bmp -------------------------------------------------------------------------------- /Train/t42.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t42.bmp -------------------------------------------------------------------------------- /Train/t43.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t43.bmp -------------------------------------------------------------------------------- /Train/t44.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t44.bmp -------------------------------------------------------------------------------- /Train/t45.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t45.bmp -------------------------------------------------------------------------------- /Train/t46.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t46.bmp -------------------------------------------------------------------------------- /Train/t47.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t47.bmp -------------------------------------------------------------------------------- /Train/t48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t48.bmp -------------------------------------------------------------------------------- /Train/t49.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t49.bmp -------------------------------------------------------------------------------- /Train/t5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t5.bmp -------------------------------------------------------------------------------- /Train/t50.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t50.bmp -------------------------------------------------------------------------------- /Train/t51.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t51.bmp -------------------------------------------------------------------------------- /Train/t52.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t52.bmp -------------------------------------------------------------------------------- /Train/t53.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t53.bmp -------------------------------------------------------------------------------- /Train/t54.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t54.bmp -------------------------------------------------------------------------------- /Train/t55.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t55.bmp -------------------------------------------------------------------------------- /Train/t56.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t56.bmp -------------------------------------------------------------------------------- /Train/t57.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t57.bmp -------------------------------------------------------------------------------- /Train/t58.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t58.bmp -------------------------------------------------------------------------------- /Train/t59.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t59.bmp -------------------------------------------------------------------------------- /Train/t6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t6.bmp -------------------------------------------------------------------------------- /Train/t60.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t60.bmp -------------------------------------------------------------------------------- /Train/t61.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t61.bmp -------------------------------------------------------------------------------- /Train/t62.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t62.bmp -------------------------------------------------------------------------------- /Train/t63.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t63.bmp -------------------------------------------------------------------------------- /Train/t64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t64.bmp -------------------------------------------------------------------------------- /Train/t65.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t65.bmp -------------------------------------------------------------------------------- /Train/t66.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t66.bmp -------------------------------------------------------------------------------- /Train/t7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t7.bmp -------------------------------------------------------------------------------- /Train/t8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t8.bmp -------------------------------------------------------------------------------- /Train/t9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/t9.bmp -------------------------------------------------------------------------------- /Train/tt1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt1.bmp -------------------------------------------------------------------------------- /Train/tt10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt10.bmp -------------------------------------------------------------------------------- /Train/tt12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt12.bmp -------------------------------------------------------------------------------- /Train/tt13.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt13.bmp -------------------------------------------------------------------------------- /Train/tt14.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt14.bmp -------------------------------------------------------------------------------- /Train/tt15.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt15.bmp -------------------------------------------------------------------------------- /Train/tt16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt16.bmp -------------------------------------------------------------------------------- /Train/tt17.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt17.bmp -------------------------------------------------------------------------------- /Train/tt18.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt18.bmp -------------------------------------------------------------------------------- /Train/tt19.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt19.bmp -------------------------------------------------------------------------------- /Train/tt2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt2.bmp -------------------------------------------------------------------------------- /Train/tt20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt20.bmp -------------------------------------------------------------------------------- /Train/tt21.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt21.bmp -------------------------------------------------------------------------------- /Train/tt22.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt22.bmp -------------------------------------------------------------------------------- /Train/tt23.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt23.bmp -------------------------------------------------------------------------------- /Train/tt24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt24.bmp -------------------------------------------------------------------------------- /Train/tt25.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt25.bmp -------------------------------------------------------------------------------- /Train/tt26.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt26.bmp -------------------------------------------------------------------------------- /Train/tt27.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt27.bmp -------------------------------------------------------------------------------- /Train/tt3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt3.bmp -------------------------------------------------------------------------------- /Train/tt4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt4.bmp -------------------------------------------------------------------------------- /Train/tt5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt5.bmp -------------------------------------------------------------------------------- /Train/tt6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt6.bmp -------------------------------------------------------------------------------- /Train/tt7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt7.bmp -------------------------------------------------------------------------------- /Train/tt8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt8.bmp -------------------------------------------------------------------------------- /Train/tt9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/Train/tt9.bmp -------------------------------------------------------------------------------- /checkpoint/srcnn_21/SRCNN.model-2550000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/checkpoint/srcnn_21/SRCNN.model-2550000 -------------------------------------------------------------------------------- /checkpoint/srcnn_21/SRCNN.model-2550000.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/checkpoint/srcnn_21/SRCNN.model-2550000.meta -------------------------------------------------------------------------------- /checkpoint/srcnn_21/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/checkpoint/srcnn_21/checkpoint -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/model.py -------------------------------------------------------------------------------- /result/bicubic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/result/bicubic.png -------------------------------------------------------------------------------- /result/orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/result/orig.png -------------------------------------------------------------------------------- /result/srcnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/result/srcnn.png -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegg89/SRCNN-Tensorflow/HEAD/utils.py --------------------------------------------------------------------------------