├── README.md ├── section_1 ├── README.md ├── problem_1 │ ├── cameraman.png │ ├── cameraman.tif │ ├── cameraman_result.png │ ├── einstein.png │ ├── einstein.tif │ ├── einstein_result.png │ ├── main.py │ └── scanLine4e.py └── problem_2 │ ├── lena512color.png │ ├── lena512color.tiff │ ├── lena512color_NTSC.png │ ├── lena512color_average.png │ ├── main.py │ ├── mandril_color.png │ ├── mandril_color.tif │ ├── mandril_color_NTSC.png │ ├── mandril_color_average.png │ └── rgblgray.py ├── section_2 ├── README.md ├── cameraman.png ├── einstein.png ├── gaussKernel.py ├── img │ ├── cameraman_1.png │ ├── cameraman_2.png │ ├── cameraman_3.png │ ├── cameraman_5.png │ ├── cameraman_sub.png │ ├── einstein_1.png │ ├── einstein_2.png │ ├── einstein_3.png │ ├── einstein_5.png │ ├── einstein_sub.png │ ├── lena_1.png │ ├── lena_2.png │ ├── lena_3.png │ ├── lena_5.png │ ├── lena_rep_1.png │ ├── lena_rep_2.png │ ├── lena_rep_3.png │ ├── lena_rep_5.png │ ├── lena_sub.png │ ├── mandril_1.png │ ├── mandril_2.png │ ├── mandril_3.png │ ├── mandril_5.png │ ├── mandril_rep_1.png │ ├── mandril_rep_2.png │ ├── mandril_rep_3.png │ ├── mandril_rep_5.png │ └── mandril_sub.png ├── lena.png ├── main.py ├── mandril.png └── twodConv.py ├── section_3 ├── README.md ├── dft2D.py ├── idft2D.py ├── problem3.png ├── problem3.py ├── problem4.png ├── problem4.py └── rose512.tif ├── section_4 ├── README.md ├── luna.png ├── pb1.py ├── pb1_result.png ├── pb2.py ├── pb2_noise.png ├── pb2_result.png ├── pb3.py └── pb3_result.png ├── section_5 ├── README.md ├── basic_function.py ├── binaryzation.py ├── img │ ├── bin.png │ ├── bin_algo.png │ ├── dist.png │ ├── example.png │ ├── morph.png │ ├── morph_thin.png │ ├── tailor.png │ ├── tailor_exp.png │ └── thin_exp.png ├── main.py ├── origin.png ├── sk_distTrans.py ├── sk_morph.py ├── sk_thin.py └── tailor.py ├── section_6 ├── README.md ├── img_denoised.png ├── img_noise.png ├── lena.png ├── main.py └── multi-decomposition.png └── section_7 ├── README.md ├── analysis.png ├── blurry_kernel.png ├── lena.png ├── lena_edgetaper.png ├── main.py ├── result.png ├── result_et.png └── test.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/README.md -------------------------------------------------------------------------------- /section_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/README.md -------------------------------------------------------------------------------- /section_1/problem_1/cameraman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_1/cameraman.png -------------------------------------------------------------------------------- /section_1/problem_1/cameraman.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_1/cameraman.tif -------------------------------------------------------------------------------- /section_1/problem_1/cameraman_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_1/cameraman_result.png -------------------------------------------------------------------------------- /section_1/problem_1/einstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_1/einstein.png -------------------------------------------------------------------------------- /section_1/problem_1/einstein.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_1/einstein.tif -------------------------------------------------------------------------------- /section_1/problem_1/einstein_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_1/einstein_result.png -------------------------------------------------------------------------------- /section_1/problem_1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_1/main.py -------------------------------------------------------------------------------- /section_1/problem_1/scanLine4e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_1/scanLine4e.py -------------------------------------------------------------------------------- /section_1/problem_2/lena512color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/lena512color.png -------------------------------------------------------------------------------- /section_1/problem_2/lena512color.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/lena512color.tiff -------------------------------------------------------------------------------- /section_1/problem_2/lena512color_NTSC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/lena512color_NTSC.png -------------------------------------------------------------------------------- /section_1/problem_2/lena512color_average.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/lena512color_average.png -------------------------------------------------------------------------------- /section_1/problem_2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/main.py -------------------------------------------------------------------------------- /section_1/problem_2/mandril_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/mandril_color.png -------------------------------------------------------------------------------- /section_1/problem_2/mandril_color.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/mandril_color.tif -------------------------------------------------------------------------------- /section_1/problem_2/mandril_color_NTSC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/mandril_color_NTSC.png -------------------------------------------------------------------------------- /section_1/problem_2/mandril_color_average.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/mandril_color_average.png -------------------------------------------------------------------------------- /section_1/problem_2/rgblgray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_1/problem_2/rgblgray.py -------------------------------------------------------------------------------- /section_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/README.md -------------------------------------------------------------------------------- /section_2/cameraman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/cameraman.png -------------------------------------------------------------------------------- /section_2/einstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/einstein.png -------------------------------------------------------------------------------- /section_2/gaussKernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/gaussKernel.py -------------------------------------------------------------------------------- /section_2/img/cameraman_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/cameraman_1.png -------------------------------------------------------------------------------- /section_2/img/cameraman_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/cameraman_2.png -------------------------------------------------------------------------------- /section_2/img/cameraman_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/cameraman_3.png -------------------------------------------------------------------------------- /section_2/img/cameraman_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/cameraman_5.png -------------------------------------------------------------------------------- /section_2/img/cameraman_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/cameraman_sub.png -------------------------------------------------------------------------------- /section_2/img/einstein_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/einstein_1.png -------------------------------------------------------------------------------- /section_2/img/einstein_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/einstein_2.png -------------------------------------------------------------------------------- /section_2/img/einstein_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/einstein_3.png -------------------------------------------------------------------------------- /section_2/img/einstein_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/einstein_5.png -------------------------------------------------------------------------------- /section_2/img/einstein_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/einstein_sub.png -------------------------------------------------------------------------------- /section_2/img/lena_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_1.png -------------------------------------------------------------------------------- /section_2/img/lena_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_2.png -------------------------------------------------------------------------------- /section_2/img/lena_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_3.png -------------------------------------------------------------------------------- /section_2/img/lena_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_5.png -------------------------------------------------------------------------------- /section_2/img/lena_rep_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_rep_1.png -------------------------------------------------------------------------------- /section_2/img/lena_rep_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_rep_2.png -------------------------------------------------------------------------------- /section_2/img/lena_rep_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_rep_3.png -------------------------------------------------------------------------------- /section_2/img/lena_rep_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_rep_5.png -------------------------------------------------------------------------------- /section_2/img/lena_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/lena_sub.png -------------------------------------------------------------------------------- /section_2/img/mandril_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_1.png -------------------------------------------------------------------------------- /section_2/img/mandril_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_2.png -------------------------------------------------------------------------------- /section_2/img/mandril_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_3.png -------------------------------------------------------------------------------- /section_2/img/mandril_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_5.png -------------------------------------------------------------------------------- /section_2/img/mandril_rep_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_rep_1.png -------------------------------------------------------------------------------- /section_2/img/mandril_rep_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_rep_2.png -------------------------------------------------------------------------------- /section_2/img/mandril_rep_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_rep_3.png -------------------------------------------------------------------------------- /section_2/img/mandril_rep_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_rep_5.png -------------------------------------------------------------------------------- /section_2/img/mandril_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/img/mandril_sub.png -------------------------------------------------------------------------------- /section_2/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/lena.png -------------------------------------------------------------------------------- /section_2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/main.py -------------------------------------------------------------------------------- /section_2/mandril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/mandril.png -------------------------------------------------------------------------------- /section_2/twodConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_2/twodConv.py -------------------------------------------------------------------------------- /section_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_3/README.md -------------------------------------------------------------------------------- /section_3/dft2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_3/dft2D.py -------------------------------------------------------------------------------- /section_3/idft2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_3/idft2D.py -------------------------------------------------------------------------------- /section_3/problem3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_3/problem3.png -------------------------------------------------------------------------------- /section_3/problem3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_3/problem3.py -------------------------------------------------------------------------------- /section_3/problem4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_3/problem4.png -------------------------------------------------------------------------------- /section_3/problem4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_3/problem4.py -------------------------------------------------------------------------------- /section_3/rose512.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_3/rose512.tif -------------------------------------------------------------------------------- /section_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/README.md -------------------------------------------------------------------------------- /section_4/luna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/luna.png -------------------------------------------------------------------------------- /section_4/pb1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/pb1.py -------------------------------------------------------------------------------- /section_4/pb1_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/pb1_result.png -------------------------------------------------------------------------------- /section_4/pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/pb2.py -------------------------------------------------------------------------------- /section_4/pb2_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/pb2_noise.png -------------------------------------------------------------------------------- /section_4/pb2_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/pb2_result.png -------------------------------------------------------------------------------- /section_4/pb3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/pb3.py -------------------------------------------------------------------------------- /section_4/pb3_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_4/pb3_result.png -------------------------------------------------------------------------------- /section_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/README.md -------------------------------------------------------------------------------- /section_5/basic_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/basic_function.py -------------------------------------------------------------------------------- /section_5/binaryzation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/binaryzation.py -------------------------------------------------------------------------------- /section_5/img/bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/bin.png -------------------------------------------------------------------------------- /section_5/img/bin_algo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/bin_algo.png -------------------------------------------------------------------------------- /section_5/img/dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/dist.png -------------------------------------------------------------------------------- /section_5/img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/example.png -------------------------------------------------------------------------------- /section_5/img/morph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/morph.png -------------------------------------------------------------------------------- /section_5/img/morph_thin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/morph_thin.png -------------------------------------------------------------------------------- /section_5/img/tailor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/tailor.png -------------------------------------------------------------------------------- /section_5/img/tailor_exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/tailor_exp.png -------------------------------------------------------------------------------- /section_5/img/thin_exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/img/thin_exp.png -------------------------------------------------------------------------------- /section_5/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/main.py -------------------------------------------------------------------------------- /section_5/origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/origin.png -------------------------------------------------------------------------------- /section_5/sk_distTrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/sk_distTrans.py -------------------------------------------------------------------------------- /section_5/sk_morph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/sk_morph.py -------------------------------------------------------------------------------- /section_5/sk_thin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/sk_thin.py -------------------------------------------------------------------------------- /section_5/tailor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_5/tailor.py -------------------------------------------------------------------------------- /section_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_6/README.md -------------------------------------------------------------------------------- /section_6/img_denoised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_6/img_denoised.png -------------------------------------------------------------------------------- /section_6/img_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_6/img_noise.png -------------------------------------------------------------------------------- /section_6/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_6/lena.png -------------------------------------------------------------------------------- /section_6/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_6/main.py -------------------------------------------------------------------------------- /section_6/multi-decomposition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_6/multi-decomposition.png -------------------------------------------------------------------------------- /section_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/README.md -------------------------------------------------------------------------------- /section_7/analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/analysis.png -------------------------------------------------------------------------------- /section_7/blurry_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/blurry_kernel.png -------------------------------------------------------------------------------- /section_7/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/lena.png -------------------------------------------------------------------------------- /section_7/lena_edgetaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/lena_edgetaper.png -------------------------------------------------------------------------------- /section_7/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/main.py -------------------------------------------------------------------------------- /section_7/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/result.png -------------------------------------------------------------------------------- /section_7/result_et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/result_et.png -------------------------------------------------------------------------------- /section_7/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leofansq/AI01002H-ImageProcessing/HEAD/section_7/test.png --------------------------------------------------------------------------------