├── .DS_Store ├── .gitignore ├── .gitmodules ├── GrayOutput ├── README.md └── validation.lua ├── HOG_SVR ├── README.md ├── feature_extract.m ├── feature_extract_y.m ├── matrix_padding.m ├── predict.m ├── rgb2yuv.m ├── scale_matrix.m ├── train.m ├── validation.m └── yuv2rgb.m ├── LICENSE ├── README.md └── Report ├── .DS_Store ├── __init__.py ├── colorization.pdf └── poster.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/.gitmodules -------------------------------------------------------------------------------- /GrayOutput/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/GrayOutput/README.md -------------------------------------------------------------------------------- /GrayOutput/validation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/GrayOutput/validation.lua -------------------------------------------------------------------------------- /HOG_SVR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/README.md -------------------------------------------------------------------------------- /HOG_SVR/feature_extract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/feature_extract.m -------------------------------------------------------------------------------- /HOG_SVR/feature_extract_y.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/feature_extract_y.m -------------------------------------------------------------------------------- /HOG_SVR/matrix_padding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/matrix_padding.m -------------------------------------------------------------------------------- /HOG_SVR/predict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/predict.m -------------------------------------------------------------------------------- /HOG_SVR/rgb2yuv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/rgb2yuv.m -------------------------------------------------------------------------------- /HOG_SVR/scale_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/scale_matrix.m -------------------------------------------------------------------------------- /HOG_SVR/train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/train.m -------------------------------------------------------------------------------- /HOG_SVR/validation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/validation.m -------------------------------------------------------------------------------- /HOG_SVR/yuv2rgb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/HOG_SVR/yuv2rgb.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/README.md -------------------------------------------------------------------------------- /Report/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/Report/.DS_Store -------------------------------------------------------------------------------- /Report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Report/colorization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/Report/colorization.pdf -------------------------------------------------------------------------------- /Report/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyken17/Machine-Learning-for-Image-Colorization/HEAD/Report/poster.png --------------------------------------------------------------------------------