├── Generate_training_data ├── 0-make_multi_focus_images_from DIV2K.py ├── Step1-get_training_samples.m ├── Step1-get_training_samples_3channel.m ├── Step2-mat2npy.py └── Step3-reshape_fuction.py ├── MIF_Task_pytorch ├── Code │ ├── CUdata_npy.py │ ├── CUtest_npy.py │ ├── MIF_CUNet.py │ ├── MIF_test.py │ └── MIF_train.py ├── multi_exposure.pth └── multi_focus.pth ├── MIR_Task_pytorch ├── RGB_guided_depth_image_SR │ ├── Code │ │ ├── CUNet.py │ │ ├── test.py │ │ ├── testdata.py │ │ ├── train.py │ │ └── traindata.py │ └── depth_ks9.pth └── flash guided non-flash image denoising │ ├── Code │ ├── CUNet.py │ ├── test.py │ ├── testdata.py │ ├── train.py │ └── traindata.py │ ├── denoise25.pth │ ├── denoise50.pth │ └── denoise75.pth ├── README.md └── images └── framework.PNG /Generate_training_data/0-make_multi_focus_images_from DIV2K.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/Generate_training_data/0-make_multi_focus_images_from DIV2K.py -------------------------------------------------------------------------------- /Generate_training_data/Step1-get_training_samples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/Generate_training_data/Step1-get_training_samples.m -------------------------------------------------------------------------------- /Generate_training_data/Step1-get_training_samples_3channel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/Generate_training_data/Step1-get_training_samples_3channel.m -------------------------------------------------------------------------------- /Generate_training_data/Step2-mat2npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/Generate_training_data/Step2-mat2npy.py -------------------------------------------------------------------------------- /Generate_training_data/Step3-reshape_fuction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/Generate_training_data/Step3-reshape_fuction.py -------------------------------------------------------------------------------- /MIF_Task_pytorch/Code/CUdata_npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIF_Task_pytorch/Code/CUdata_npy.py -------------------------------------------------------------------------------- /MIF_Task_pytorch/Code/CUtest_npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIF_Task_pytorch/Code/CUtest_npy.py -------------------------------------------------------------------------------- /MIF_Task_pytorch/Code/MIF_CUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIF_Task_pytorch/Code/MIF_CUNet.py -------------------------------------------------------------------------------- /MIF_Task_pytorch/Code/MIF_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIF_Task_pytorch/Code/MIF_test.py -------------------------------------------------------------------------------- /MIF_Task_pytorch/Code/MIF_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIF_Task_pytorch/Code/MIF_train.py -------------------------------------------------------------------------------- /MIF_Task_pytorch/multi_exposure.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIF_Task_pytorch/multi_exposure.pth -------------------------------------------------------------------------------- /MIF_Task_pytorch/multi_focus.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIF_Task_pytorch/multi_focus.pth -------------------------------------------------------------------------------- /MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/CUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/CUNet.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/test.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/testdata.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/train.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/traindata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/RGB_guided_depth_image_SR/Code/traindata.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/RGB_guided_depth_image_SR/depth_ks9.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/RGB_guided_depth_image_SR/depth_ks9.pth -------------------------------------------------------------------------------- /MIR_Task_pytorch/flash guided non-flash image denoising/Code/CUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/flash guided non-flash image denoising/Code/CUNet.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/flash guided non-flash image denoising/Code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/flash guided non-flash image denoising/Code/test.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/flash guided non-flash image denoising/Code/testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/flash guided non-flash image denoising/Code/testdata.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/flash guided non-flash image denoising/Code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/flash guided non-flash image denoising/Code/train.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/flash guided non-flash image denoising/Code/traindata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/flash guided non-flash image denoising/Code/traindata.py -------------------------------------------------------------------------------- /MIR_Task_pytorch/flash guided non-flash image denoising/denoise25.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/flash guided non-flash image denoising/denoise25.pth -------------------------------------------------------------------------------- /MIR_Task_pytorch/flash guided non-flash image denoising/denoise50.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/flash guided non-flash image denoising/denoise50.pth -------------------------------------------------------------------------------- /MIR_Task_pytorch/flash guided non-flash image denoising/denoise75.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/MIR_Task_pytorch/flash guided non-flash image denoising/denoise75.pth -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/README.md -------------------------------------------------------------------------------- /images/framework.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cindydeng1991/TPAMI-CU-Net/HEAD/images/framework.PNG --------------------------------------------------------------------------------