├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── RGB2Y.h ├── main.cpp └── test.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komrad36/RGB2Y/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komrad36/RGB2Y/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komrad36/RGB2Y/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komrad36/RGB2Y/HEAD/README.md -------------------------------------------------------------------------------- /RGB2Y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komrad36/RGB2Y/HEAD/RGB2Y.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komrad36/RGB2Y/HEAD/main.cpp -------------------------------------------------------------------------------- /test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komrad36/RGB2Y/HEAD/test.jpg --------------------------------------------------------------------------------