├── README.md ├── ccc ├── __init__.py ├── dataset.py ├── log_chrominance.py ├── minimizer.py └── pyramid.py └── scripts └── compare_with_gray_world.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoshinK/convolutional-color-constancy/HEAD/README.md -------------------------------------------------------------------------------- /ccc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccc/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoshinK/convolutional-color-constancy/HEAD/ccc/dataset.py -------------------------------------------------------------------------------- /ccc/log_chrominance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoshinK/convolutional-color-constancy/HEAD/ccc/log_chrominance.py -------------------------------------------------------------------------------- /ccc/minimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoshinK/convolutional-color-constancy/HEAD/ccc/minimizer.py -------------------------------------------------------------------------------- /ccc/pyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoshinK/convolutional-color-constancy/HEAD/ccc/pyramid.py -------------------------------------------------------------------------------- /scripts/compare_with_gray_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoshinK/convolutional-color-constancy/HEAD/scripts/compare_with_gray_world.py --------------------------------------------------------------------------------