We have a dataset with RGB values. For example,
175 91 53
And the label is red. What can you get out of this feature? or somehow determine the color? Here is a link to the example above (PS color does not look like red, but we consider it red):
We have a dataset with RGB values. For example,
175 91 53
And the label is red. What can you get out of this feature? or somehow determine the color? Here is a link to the example above (PS color does not look like red, but we consider it red):
Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .
Translate the color from the RGB view into the HSV model and match the hue value with the color name (you will need to specify the ranges).
At low saturation, the color will be gray (white, black - depending on brightness)
Source: https://ru.stackoverflow.com/questions/906035/
All Articles