├── LICENSE.md ├── README.md ├── bgu ├── LICENSE.md ├── bguFit.m ├── bguSlice.m ├── buildAffineSliceMatrix.m ├── buildApplyAffineModelMatrix.m ├── buildDerivXMatrix.m ├── buildDerivYMatrix.m ├── buildDerivZMatrix.m ├── buildSecondDerivZMatrix.m ├── buildSliceMatrix.m ├── columnize.m ├── computeBGU.m ├── demo.m ├── getDefaultAffineGridSize.m ├── heightWidth.m ├── maxn.m ├── mse.m ├── readme.txt ├── rgb2luminance.m ├── runOnFilenames.m ├── showTestResults.m └── testBGU.m ├── demo_GUI.fig ├── demo_GUI.m ├── demo_image_directory.m ├── demo_single_image.m ├── exFusion ├── display_pyramid.m ├── downsample_.m ├── example.m ├── exposure_fusion.m ├── exposure_fusion_known_weights.m ├── gaussian_pyramid_.m ├── laplacian_pyramid_.m ├── load_images.m ├── pyramid_filter.m ├── pyramid_filter_.m ├── readme.txt ├── reconstruct_laplacian_pyramid_.m ├── test_with_blending_mask.m └── upsample_.m ├── example_images ├── Floris van Lint-CC BY-NC 2.0.jpg ├── Justin Chiaratti-CC BY-NC-SA 2.0.jpg ├── Probably Okay! (photo4) CC BY-SA 2.0.jpg ├── Rodrigo Valla - CC BY-NC 2.0.jpg ├── Roland Tanglao-CC BY 2.0.jpg ├── a0716-MB_20030906_030_P1.5.JPG ├── a0964-20061224_140610__E6B7217_N1.5.JPG ├── a1359-NKIM_MG_6126_N1.5.JPG ├── a1475-dgw_146_P1.JPG ├── a1956-JI2E3597_N1.5.JPG ├── a2039-dvf_088_N1.5.JPG ├── a2192-IMG_2045_P1.5.JPG ├── a2490-WP_CRW_3690_N1.5.JPG ├── a2682-DSC_0085_P1.5.JPG ├── a3354-MB_070908_069_P1.5.JPG ├── a4608-Duggan_080413_6147_N1.5.JPG ├── a4747-09-05-19-at-19h04m32s-_MG_9562_P1.5.JPG ├── a4874-20090320_at_19h15m51__MG_0126_N1.5.JPG ├── a4875-DSC_0382_N1.5.JPG ├── frostnip907 Flickr CC BY-NC-SA 2.0.jpg ├── julochka Flickr CC BY-NC 2.0.jpg └── y Gabriele Flickr CC BY-NC-SA 2.0.jpg ├── exposure_dataset └── .keep ├── install_.m ├── main_training.m ├── models └── model.mat ├── src ├── addSubNet.m ├── addToLog_savebkup.m ├── augmentBatch.m ├── createDiscriminator.m ├── create_generator.m ├── downsample_.m ├── extractPyrLayer.m ├── final_Loss.m ├── ganLoss.m ├── gaussian_pyramid_.m ├── getTr_Vl_data.m ├── get_trainingOptions.m ├── gtRead.m ├── histAdjust.m ├── inRead.m ├── laplacian_pyramid_.m ├── modelGradients.m ├── packingGLayer.m ├── patches_extraction.m ├── plotTrainingAccuracy.m ├── pre_process_btch.m ├── pre_process_img.m ├── pyramid_filter.m ├── pyramid_filter_.m ├── randPatchExtraction.m ├── reconstruct_laplacian_pyramid_.m ├── train_network.m └── upsample_.m └── uninstall_.m /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/README.md -------------------------------------------------------------------------------- /bgu/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/LICENSE.md -------------------------------------------------------------------------------- /bgu/bguFit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/bguFit.m -------------------------------------------------------------------------------- /bgu/bguSlice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/bguSlice.m -------------------------------------------------------------------------------- /bgu/buildAffineSliceMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/buildAffineSliceMatrix.m -------------------------------------------------------------------------------- /bgu/buildApplyAffineModelMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/buildApplyAffineModelMatrix.m -------------------------------------------------------------------------------- /bgu/buildDerivXMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/buildDerivXMatrix.m -------------------------------------------------------------------------------- /bgu/buildDerivYMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/buildDerivYMatrix.m -------------------------------------------------------------------------------- /bgu/buildDerivZMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/buildDerivZMatrix.m -------------------------------------------------------------------------------- /bgu/buildSecondDerivZMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/buildSecondDerivZMatrix.m -------------------------------------------------------------------------------- /bgu/buildSliceMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/buildSliceMatrix.m -------------------------------------------------------------------------------- /bgu/columnize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/columnize.m -------------------------------------------------------------------------------- /bgu/computeBGU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/computeBGU.m -------------------------------------------------------------------------------- /bgu/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/demo.m -------------------------------------------------------------------------------- /bgu/getDefaultAffineGridSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/getDefaultAffineGridSize.m -------------------------------------------------------------------------------- /bgu/heightWidth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/heightWidth.m -------------------------------------------------------------------------------- /bgu/maxn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/maxn.m -------------------------------------------------------------------------------- /bgu/mse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/mse.m -------------------------------------------------------------------------------- /bgu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/readme.txt -------------------------------------------------------------------------------- /bgu/rgb2luminance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/rgb2luminance.m -------------------------------------------------------------------------------- /bgu/runOnFilenames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/runOnFilenames.m -------------------------------------------------------------------------------- /bgu/showTestResults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/showTestResults.m -------------------------------------------------------------------------------- /bgu/testBGU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/bgu/testBGU.m -------------------------------------------------------------------------------- /demo_GUI.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/demo_GUI.fig -------------------------------------------------------------------------------- /demo_GUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/demo_GUI.m -------------------------------------------------------------------------------- /demo_image_directory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/demo_image_directory.m -------------------------------------------------------------------------------- /demo_single_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/demo_single_image.m -------------------------------------------------------------------------------- /exFusion/display_pyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/display_pyramid.m -------------------------------------------------------------------------------- /exFusion/downsample_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/downsample_.m -------------------------------------------------------------------------------- /exFusion/example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/example.m -------------------------------------------------------------------------------- /exFusion/exposure_fusion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/exposure_fusion.m -------------------------------------------------------------------------------- /exFusion/exposure_fusion_known_weights.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/exposure_fusion_known_weights.m -------------------------------------------------------------------------------- /exFusion/gaussian_pyramid_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/gaussian_pyramid_.m -------------------------------------------------------------------------------- /exFusion/laplacian_pyramid_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/laplacian_pyramid_.m -------------------------------------------------------------------------------- /exFusion/load_images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/load_images.m -------------------------------------------------------------------------------- /exFusion/pyramid_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/pyramid_filter.m -------------------------------------------------------------------------------- /exFusion/pyramid_filter_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/pyramid_filter_.m -------------------------------------------------------------------------------- /exFusion/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/readme.txt -------------------------------------------------------------------------------- /exFusion/reconstruct_laplacian_pyramid_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/reconstruct_laplacian_pyramid_.m -------------------------------------------------------------------------------- /exFusion/test_with_blending_mask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/test_with_blending_mask.m -------------------------------------------------------------------------------- /exFusion/upsample_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/exFusion/upsample_.m -------------------------------------------------------------------------------- /example_images/Floris van Lint-CC BY-NC 2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/Floris van Lint-CC BY-NC 2.0.jpg -------------------------------------------------------------------------------- /example_images/Justin Chiaratti-CC BY-NC-SA 2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/Justin Chiaratti-CC BY-NC-SA 2.0.jpg -------------------------------------------------------------------------------- /example_images/Probably Okay! (photo4) CC BY-SA 2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/Probably Okay! (photo4) CC BY-SA 2.0.jpg -------------------------------------------------------------------------------- /example_images/Rodrigo Valla - CC BY-NC 2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/Rodrigo Valla - CC BY-NC 2.0.jpg -------------------------------------------------------------------------------- /example_images/Roland Tanglao-CC BY 2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/Roland Tanglao-CC BY 2.0.jpg -------------------------------------------------------------------------------- /example_images/a0716-MB_20030906_030_P1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a0716-MB_20030906_030_P1.5.JPG -------------------------------------------------------------------------------- /example_images/a0964-20061224_140610__E6B7217_N1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a0964-20061224_140610__E6B7217_N1.5.JPG -------------------------------------------------------------------------------- /example_images/a1359-NKIM_MG_6126_N1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a1359-NKIM_MG_6126_N1.5.JPG -------------------------------------------------------------------------------- /example_images/a1475-dgw_146_P1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a1475-dgw_146_P1.JPG -------------------------------------------------------------------------------- /example_images/a1956-JI2E3597_N1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a1956-JI2E3597_N1.5.JPG -------------------------------------------------------------------------------- /example_images/a2039-dvf_088_N1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a2039-dvf_088_N1.5.JPG -------------------------------------------------------------------------------- /example_images/a2192-IMG_2045_P1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a2192-IMG_2045_P1.5.JPG -------------------------------------------------------------------------------- /example_images/a2490-WP_CRW_3690_N1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a2490-WP_CRW_3690_N1.5.JPG -------------------------------------------------------------------------------- /example_images/a2682-DSC_0085_P1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a2682-DSC_0085_P1.5.JPG -------------------------------------------------------------------------------- /example_images/a3354-MB_070908_069_P1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a3354-MB_070908_069_P1.5.JPG -------------------------------------------------------------------------------- /example_images/a4608-Duggan_080413_6147_N1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a4608-Duggan_080413_6147_N1.5.JPG -------------------------------------------------------------------------------- /example_images/a4747-09-05-19-at-19h04m32s-_MG_9562_P1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a4747-09-05-19-at-19h04m32s-_MG_9562_P1.5.JPG -------------------------------------------------------------------------------- /example_images/a4874-20090320_at_19h15m51__MG_0126_N1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a4874-20090320_at_19h15m51__MG_0126_N1.5.JPG -------------------------------------------------------------------------------- /example_images/a4875-DSC_0382_N1.5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/a4875-DSC_0382_N1.5.JPG -------------------------------------------------------------------------------- /example_images/frostnip907 Flickr CC BY-NC-SA 2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/frostnip907 Flickr CC BY-NC-SA 2.0.jpg -------------------------------------------------------------------------------- /example_images/julochka Flickr CC BY-NC 2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/julochka Flickr CC BY-NC 2.0.jpg -------------------------------------------------------------------------------- /example_images/y Gabriele Flickr CC BY-NC-SA 2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/example_images/y Gabriele Flickr CC BY-NC-SA 2.0.jpg -------------------------------------------------------------------------------- /exposure_dataset/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/install_.m -------------------------------------------------------------------------------- /main_training.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/main_training.m -------------------------------------------------------------------------------- /models/model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/models/model.mat -------------------------------------------------------------------------------- /src/addSubNet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/addSubNet.m -------------------------------------------------------------------------------- /src/addToLog_savebkup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/addToLog_savebkup.m -------------------------------------------------------------------------------- /src/augmentBatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/augmentBatch.m -------------------------------------------------------------------------------- /src/createDiscriminator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/createDiscriminator.m -------------------------------------------------------------------------------- /src/create_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/create_generator.m -------------------------------------------------------------------------------- /src/downsample_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/downsample_.m -------------------------------------------------------------------------------- /src/extractPyrLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/extractPyrLayer.m -------------------------------------------------------------------------------- /src/final_Loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/final_Loss.m -------------------------------------------------------------------------------- /src/ganLoss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/ganLoss.m -------------------------------------------------------------------------------- /src/gaussian_pyramid_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/gaussian_pyramid_.m -------------------------------------------------------------------------------- /src/getTr_Vl_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/getTr_Vl_data.m -------------------------------------------------------------------------------- /src/get_trainingOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/get_trainingOptions.m -------------------------------------------------------------------------------- /src/gtRead.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/gtRead.m -------------------------------------------------------------------------------- /src/histAdjust.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/histAdjust.m -------------------------------------------------------------------------------- /src/inRead.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/inRead.m -------------------------------------------------------------------------------- /src/laplacian_pyramid_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/laplacian_pyramid_.m -------------------------------------------------------------------------------- /src/modelGradients.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/modelGradients.m -------------------------------------------------------------------------------- /src/packingGLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/packingGLayer.m -------------------------------------------------------------------------------- /src/patches_extraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/patches_extraction.m -------------------------------------------------------------------------------- /src/plotTrainingAccuracy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/plotTrainingAccuracy.m -------------------------------------------------------------------------------- /src/pre_process_btch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/pre_process_btch.m -------------------------------------------------------------------------------- /src/pre_process_img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/pre_process_img.m -------------------------------------------------------------------------------- /src/pyramid_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/pyramid_filter.m -------------------------------------------------------------------------------- /src/pyramid_filter_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/pyramid_filter_.m -------------------------------------------------------------------------------- /src/randPatchExtraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/randPatchExtraction.m -------------------------------------------------------------------------------- /src/reconstruct_laplacian_pyramid_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/reconstruct_laplacian_pyramid_.m -------------------------------------------------------------------------------- /src/train_network.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/train_network.m -------------------------------------------------------------------------------- /src/upsample_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/src/upsample_.m -------------------------------------------------------------------------------- /uninstall_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudnafifi/Exposure_Correction/HEAD/uninstall_.m --------------------------------------------------------------------------------