├── AGC ├── Demo_AGC.m ├── Hist_AGC.m ├── README.md └── data.mat ├── DPC └── Main.m ├── DetailEnhance ├── Demo_DetailEnhance.m ├── data │ ├── 11.png │ ├── 26.png │ ├── 31.png │ ├── 32.png │ ├── 40.png │ ├── 43.png │ └── 52.png ├── method │ ├── multiScale_Sharpen_imp.m │ ├── multiScale_paper.m │ └── super_sharpness_aomanhao.p └── readme.md ├── Enhance ├── Demo_enhance.m ├── algorithms │ ├── ADPHE.p │ ├── AHE.m │ ├── DPHE.p │ ├── HE.m │ └── PHE.m └── data │ └── test │ ├── 001.tiff │ ├── 002.tiff │ ├── 003.tiff │ └── 004.tiff ├── README.md └── Striped Noise Remove ├── Demo_Stripe.m ├── method ├── DeSN_LP_bilateral.m ├── DeSN_LP_mean.m ├── DeSN_MIRE.m ├── DeSN_MeanCalcu.m ├── DeSN_mhe.m └── DeSN_win_mean.m ├── readme.md ├── test_image ├── image │ └── input_07.png └── image_noise │ ├── input_01.png │ ├── input_02.png │ ├── input_03.png │ ├── input_04.png │ ├── input_05.png │ ├── input_06.png │ ├── input_07.png │ ├── input_08.png │ ├── input_09.png │ ├── input_10.png │ ├── input_11.png │ ├── input_12.png │ ├── input_13.png │ ├── input_14.png │ ├── input_15.png │ ├── input_16.png │ ├── input_17.png │ ├── input_18.png │ ├── input_19.png │ └── input_20.png └── tools └── bfilter2.m /AGC/Demo_AGC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/AGC/Demo_AGC.m -------------------------------------------------------------------------------- /AGC/Hist_AGC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/AGC/Hist_AGC.m -------------------------------------------------------------------------------- /AGC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/AGC/README.md -------------------------------------------------------------------------------- /AGC/data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/AGC/data.mat -------------------------------------------------------------------------------- /DPC/Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DPC/Main.m -------------------------------------------------------------------------------- /DetailEnhance/Demo_DetailEnhance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/Demo_DetailEnhance.m -------------------------------------------------------------------------------- /DetailEnhance/data/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/data/11.png -------------------------------------------------------------------------------- /DetailEnhance/data/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/data/26.png -------------------------------------------------------------------------------- /DetailEnhance/data/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/data/31.png -------------------------------------------------------------------------------- /DetailEnhance/data/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/data/32.png -------------------------------------------------------------------------------- /DetailEnhance/data/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/data/40.png -------------------------------------------------------------------------------- /DetailEnhance/data/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/data/43.png -------------------------------------------------------------------------------- /DetailEnhance/data/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/data/52.png -------------------------------------------------------------------------------- /DetailEnhance/method/multiScale_Sharpen_imp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/method/multiScale_Sharpen_imp.m -------------------------------------------------------------------------------- /DetailEnhance/method/multiScale_paper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/method/multiScale_paper.m -------------------------------------------------------------------------------- /DetailEnhance/method/super_sharpness_aomanhao.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/DetailEnhance/method/super_sharpness_aomanhao.p -------------------------------------------------------------------------------- /DetailEnhance/readme.md: -------------------------------------------------------------------------------- 1 | IMAGE detail enhance 2 | -------------------------------------------------------------------------------- /Enhance/Demo_enhance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/Demo_enhance.m -------------------------------------------------------------------------------- /Enhance/algorithms/ADPHE.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/algorithms/ADPHE.p -------------------------------------------------------------------------------- /Enhance/algorithms/AHE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/algorithms/AHE.m -------------------------------------------------------------------------------- /Enhance/algorithms/DPHE.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/algorithms/DPHE.p -------------------------------------------------------------------------------- /Enhance/algorithms/HE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/algorithms/HE.m -------------------------------------------------------------------------------- /Enhance/algorithms/PHE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/algorithms/PHE.m -------------------------------------------------------------------------------- /Enhance/data/test/001.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/data/test/001.tiff -------------------------------------------------------------------------------- /Enhance/data/test/002.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/data/test/002.tiff -------------------------------------------------------------------------------- /Enhance/data/test/003.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/data/test/003.tiff -------------------------------------------------------------------------------- /Enhance/data/test/004.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Enhance/data/test/004.tiff -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/README.md -------------------------------------------------------------------------------- /Striped Noise Remove/Demo_Stripe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/Demo_Stripe.m -------------------------------------------------------------------------------- /Striped Noise Remove/method/DeSN_LP_bilateral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/method/DeSN_LP_bilateral.m -------------------------------------------------------------------------------- /Striped Noise Remove/method/DeSN_LP_mean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/method/DeSN_LP_mean.m -------------------------------------------------------------------------------- /Striped Noise Remove/method/DeSN_MIRE.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Striped Noise Remove/method/DeSN_MeanCalcu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/method/DeSN_MeanCalcu.m -------------------------------------------------------------------------------- /Striped Noise Remove/method/DeSN_mhe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/method/DeSN_mhe.m -------------------------------------------------------------------------------- /Striped Noise Remove/method/DeSN_win_mean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/method/DeSN_win_mean.m -------------------------------------------------------------------------------- /Striped Noise Remove/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/readme.md -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image/input_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image/input_07.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_01.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_02.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_03.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_04.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_05.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_06.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_07.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_08.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_09.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_10.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_11.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_12.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_13.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_14.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_15.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_16.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_17.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_18.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_19.png -------------------------------------------------------------------------------- /Striped Noise Remove/test_image/image_noise/input_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/test_image/image_noise/input_20.png -------------------------------------------------------------------------------- /Striped Noise Remove/tools/bfilter2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AomanHao/ISP_Infrared_Image_Process/HEAD/Striped Noise Remove/tools/bfilter2.m --------------------------------------------------------------------------------