├── README.md ├── SetPath.m ├── data ├── Color Denoising Result.png ├── Gray Denoising Result.png ├── Inpainting Result-Random Occlusion .png ├── Inpainting Result-Text Mask.png ├── Super-resolution result.png └── dict_jdsr.mat ├── denoising ├── ColorDenoisingBySC.m ├── DemoColorDenoising.m ├── DemoGrayDenoising.m └── GrayDenoisingBySC.m ├── inpainting ├── ColorInpaintingBySC.m └── DemoInpiantingBySC.m ├── patch_match └── readme.md ├── style_transfer ├── DemoStyleTrans.m ├── TSST_AddNoise.m ├── TSST_PatchMatchAndAggr.m ├── TSST_PerformST.m ├── TSST_Preprocess.m └── TSST_SetParameters.m ├── super_res ├── ANR │ ├── ANR_ComputeProjMat.m │ ├── ANR_Reconstruct.m │ └── ANR_SetParams.m ├── Demo_ANR.m ├── Demo_JDSR.m ├── GetSRColorImage.m └── JDSR │ ├── JDSR_GlobalSolve.m │ ├── JDSR_LocalSolve.m │ ├── JDSR_PreProcess.m │ ├── JDSR_SetParams.m │ └── JDSR_Train.m └── utils ├── BiuldGaussianPyramid.m ├── CleanFileList.m ├── ImgFiltering.m ├── ImgPad.m ├── PatchExtraction.m ├── SearchNN.m └── VectorIndexing3D.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/README.md -------------------------------------------------------------------------------- /SetPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/SetPath.m -------------------------------------------------------------------------------- /data/Color Denoising Result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/data/Color Denoising Result.png -------------------------------------------------------------------------------- /data/Gray Denoising Result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/data/Gray Denoising Result.png -------------------------------------------------------------------------------- /data/Inpainting Result-Random Occlusion .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/data/Inpainting Result-Random Occlusion .png -------------------------------------------------------------------------------- /data/Inpainting Result-Text Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/data/Inpainting Result-Text Mask.png -------------------------------------------------------------------------------- /data/Super-resolution result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/data/Super-resolution result.png -------------------------------------------------------------------------------- /data/dict_jdsr.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/data/dict_jdsr.mat -------------------------------------------------------------------------------- /denoising/ColorDenoisingBySC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/denoising/ColorDenoisingBySC.m -------------------------------------------------------------------------------- /denoising/DemoColorDenoising.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/denoising/DemoColorDenoising.m -------------------------------------------------------------------------------- /denoising/DemoGrayDenoising.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/denoising/DemoGrayDenoising.m -------------------------------------------------------------------------------- /denoising/GrayDenoisingBySC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/denoising/GrayDenoisingBySC.m -------------------------------------------------------------------------------- /inpainting/ColorInpaintingBySC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/inpainting/ColorInpaintingBySC.m -------------------------------------------------------------------------------- /inpainting/DemoInpiantingBySC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/inpainting/DemoInpiantingBySC.m -------------------------------------------------------------------------------- /patch_match/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/patch_match/readme.md -------------------------------------------------------------------------------- /style_transfer/DemoStyleTrans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/style_transfer/DemoStyleTrans.m -------------------------------------------------------------------------------- /style_transfer/TSST_AddNoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/style_transfer/TSST_AddNoise.m -------------------------------------------------------------------------------- /style_transfer/TSST_PatchMatchAndAggr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/style_transfer/TSST_PatchMatchAndAggr.m -------------------------------------------------------------------------------- /style_transfer/TSST_PerformST.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/style_transfer/TSST_PerformST.m -------------------------------------------------------------------------------- /style_transfer/TSST_Preprocess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/style_transfer/TSST_Preprocess.m -------------------------------------------------------------------------------- /style_transfer/TSST_SetParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/style_transfer/TSST_SetParameters.m -------------------------------------------------------------------------------- /super_res/ANR/ANR_ComputeProjMat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/ANR/ANR_ComputeProjMat.m -------------------------------------------------------------------------------- /super_res/ANR/ANR_Reconstruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/ANR/ANR_Reconstruct.m -------------------------------------------------------------------------------- /super_res/ANR/ANR_SetParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/ANR/ANR_SetParams.m -------------------------------------------------------------------------------- /super_res/Demo_ANR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/Demo_ANR.m -------------------------------------------------------------------------------- /super_res/Demo_JDSR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/Demo_JDSR.m -------------------------------------------------------------------------------- /super_res/GetSRColorImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/GetSRColorImage.m -------------------------------------------------------------------------------- /super_res/JDSR/JDSR_GlobalSolve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/JDSR/JDSR_GlobalSolve.m -------------------------------------------------------------------------------- /super_res/JDSR/JDSR_LocalSolve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/JDSR/JDSR_LocalSolve.m -------------------------------------------------------------------------------- /super_res/JDSR/JDSR_PreProcess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/JDSR/JDSR_PreProcess.m -------------------------------------------------------------------------------- /super_res/JDSR/JDSR_SetParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/JDSR/JDSR_SetParams.m -------------------------------------------------------------------------------- /super_res/JDSR/JDSR_Train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/super_res/JDSR/JDSR_Train.m -------------------------------------------------------------------------------- /utils/BiuldGaussianPyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/utils/BiuldGaussianPyramid.m -------------------------------------------------------------------------------- /utils/CleanFileList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/utils/CleanFileList.m -------------------------------------------------------------------------------- /utils/ImgFiltering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/utils/ImgFiltering.m -------------------------------------------------------------------------------- /utils/ImgPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/utils/ImgPad.m -------------------------------------------------------------------------------- /utils/PatchExtraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/utils/PatchExtraction.m -------------------------------------------------------------------------------- /utils/SearchNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/utils/SearchNN.m -------------------------------------------------------------------------------- /utils/VectorIndexing3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/PatchBasedImgProc/HEAD/utils/VectorIndexing3D.m --------------------------------------------------------------------------------