├── C++ └── readme.md ├── Figs ├── Exposure-Errors.png ├── Firstfig.png └── High-level-Vision-Tasks.png ├── Matlab ├── Input │ ├── over │ │ └── OverExposure.JPG │ └── under │ │ └── UnderExposure.JPG ├── PEC.m ├── Result │ ├── OverExposure.JPG │ └── UnderExposure.JPG ├── f_fuc.m └── save_images.m ├── Python ├── Function.py ├── Input │ ├── over │ │ └── OverExposure.JPG │ └── under │ │ └── UnderExposure.JPG ├── PEC.py └── Result │ ├── OverExposure.JPG │ └── UnderExposure.JPG └── README.md /C++/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Figs/Exposure-Errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Figs/Exposure-Errors.png -------------------------------------------------------------------------------- /Figs/Firstfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Figs/Firstfig.png -------------------------------------------------------------------------------- /Figs/High-level-Vision-Tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Figs/High-level-Vision-Tasks.png -------------------------------------------------------------------------------- /Matlab/Input/over/OverExposure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Matlab/Input/over/OverExposure.JPG -------------------------------------------------------------------------------- /Matlab/Input/under/UnderExposure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Matlab/Input/under/UnderExposure.JPG -------------------------------------------------------------------------------- /Matlab/PEC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Matlab/PEC.m -------------------------------------------------------------------------------- /Matlab/Result/OverExposure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Matlab/Result/OverExposure.JPG -------------------------------------------------------------------------------- /Matlab/Result/UnderExposure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Matlab/Result/UnderExposure.JPG -------------------------------------------------------------------------------- /Matlab/f_fuc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Matlab/f_fuc.m -------------------------------------------------------------------------------- /Matlab/save_images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Matlab/save_images.m -------------------------------------------------------------------------------- /Python/Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Python/Function.py -------------------------------------------------------------------------------- /Python/Input/over/OverExposure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Python/Input/over/OverExposure.JPG -------------------------------------------------------------------------------- /Python/Input/under/UnderExposure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Python/Input/under/UnderExposure.JPG -------------------------------------------------------------------------------- /Python/PEC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Python/PEC.py -------------------------------------------------------------------------------- /Python/Result/OverExposure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Python/Result/OverExposure.JPG -------------------------------------------------------------------------------- /Python/Result/UnderExposure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/Python/Result/UnderExposure.JPG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vis-opt-group/PEC/HEAD/README.md --------------------------------------------------------------------------------