Color name prediction
Given data:
R G B Color
0 0 0 Black
255 255 255 White
255 0 0 Red
0 255 0 Lime
0 0 255 Blue
255 255 0 Yellow
0 255 255 Cyan_Aqua
...
Can we predict the color given an RGB input? For example,
224, 255, 255=light_cyan
The goal is to generate logical names and not random names. For instance, if the data contains "green", a closest match with lighter hue, would be named "light green".
If yes, some pointers would be very helpful.
Topic weka
Category Data Science