├── README.md └── TIP-CSNet-code ├── TIPtest_CSNetPlus.m ├── TestImage └── Set5 │ ├── baby_GT.bmp │ ├── bird_GT.bmp │ ├── butterfly_GT.bmp │ ├── head_GT.bmp │ └── woman_GT.bmp ├── cnn_CSNetPlus_dag.m ├── cnn_CSNetPlus_experiments_dag.m ├── cnn_CSNetPlus_init_dagnn.m ├── cnn_CSNetPlus_train_dag.m ├── data ├── GenerateData_model_64_96_Adam.m └── utilities │ ├── Cal_PSNRSSIM.m │ ├── data_augmentation.m │ ├── modcrop.m │ ├── patches_generation.m │ └── shave.m ├── model ├── net-0.01.mat ├── net-0.05.mat ├── net-0.1.mat ├── net-0.2.mat ├── net-0.3.mat ├── net-0.4.mat └── net-0.5.mat └── myLayers ├── EuclidLoss.m ├── bcs_init_rec_dag.m ├── bcs_initialRec_wzhshi.m └── vl_nnreshape_wzhshi.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/README.md -------------------------------------------------------------------------------- /TIP-CSNet-code/TIPtest_CSNetPlus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/TIPtest_CSNetPlus.m -------------------------------------------------------------------------------- /TIP-CSNet-code/TestImage/Set5/baby_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/TestImage/Set5/baby_GT.bmp -------------------------------------------------------------------------------- /TIP-CSNet-code/TestImage/Set5/bird_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/TestImage/Set5/bird_GT.bmp -------------------------------------------------------------------------------- /TIP-CSNet-code/TestImage/Set5/butterfly_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/TestImage/Set5/butterfly_GT.bmp -------------------------------------------------------------------------------- /TIP-CSNet-code/TestImage/Set5/head_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/TestImage/Set5/head_GT.bmp -------------------------------------------------------------------------------- /TIP-CSNet-code/TestImage/Set5/woman_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/TestImage/Set5/woman_GT.bmp -------------------------------------------------------------------------------- /TIP-CSNet-code/cnn_CSNetPlus_dag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/cnn_CSNetPlus_dag.m -------------------------------------------------------------------------------- /TIP-CSNet-code/cnn_CSNetPlus_experiments_dag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/cnn_CSNetPlus_experiments_dag.m -------------------------------------------------------------------------------- /TIP-CSNet-code/cnn_CSNetPlus_init_dagnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/cnn_CSNetPlus_init_dagnn.m -------------------------------------------------------------------------------- /TIP-CSNet-code/cnn_CSNetPlus_train_dag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/cnn_CSNetPlus_train_dag.m -------------------------------------------------------------------------------- /TIP-CSNet-code/data/GenerateData_model_64_96_Adam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/data/GenerateData_model_64_96_Adam.m -------------------------------------------------------------------------------- /TIP-CSNet-code/data/utilities/Cal_PSNRSSIM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/data/utilities/Cal_PSNRSSIM.m -------------------------------------------------------------------------------- /TIP-CSNet-code/data/utilities/data_augmentation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/data/utilities/data_augmentation.m -------------------------------------------------------------------------------- /TIP-CSNet-code/data/utilities/modcrop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/data/utilities/modcrop.m -------------------------------------------------------------------------------- /TIP-CSNet-code/data/utilities/patches_generation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/data/utilities/patches_generation.m -------------------------------------------------------------------------------- /TIP-CSNet-code/data/utilities/shave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/data/utilities/shave.m -------------------------------------------------------------------------------- /TIP-CSNet-code/model/net-0.01.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/model/net-0.01.mat -------------------------------------------------------------------------------- /TIP-CSNet-code/model/net-0.05.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/model/net-0.05.mat -------------------------------------------------------------------------------- /TIP-CSNet-code/model/net-0.1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/model/net-0.1.mat -------------------------------------------------------------------------------- /TIP-CSNet-code/model/net-0.2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/model/net-0.2.mat -------------------------------------------------------------------------------- /TIP-CSNet-code/model/net-0.3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/model/net-0.3.mat -------------------------------------------------------------------------------- /TIP-CSNet-code/model/net-0.4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/model/net-0.4.mat -------------------------------------------------------------------------------- /TIP-CSNet-code/model/net-0.5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/model/net-0.5.mat -------------------------------------------------------------------------------- /TIP-CSNet-code/myLayers/EuclidLoss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/myLayers/EuclidLoss.m -------------------------------------------------------------------------------- /TIP-CSNet-code/myLayers/bcs_init_rec_dag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/myLayers/bcs_init_rec_dag.m -------------------------------------------------------------------------------- /TIP-CSNet-code/myLayers/bcs_initialRec_wzhshi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/myLayers/bcs_initialRec_wzhshi.m -------------------------------------------------------------------------------- /TIP-CSNet-code/myLayers/vl_nnreshape_wzhshi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzhshi/TIP-CSNet/HEAD/TIP-CSNet-code/myLayers/vl_nnreshape_wzhshi.m --------------------------------------------------------------------------------