computer vision - Mapping RGB/hex color codes to general color categories -


is there dataset maps each of ~16m rgb or hex color values general color family/category - e.g. red, purple, orange, beige, brown, etc. - access programmatically or load database or json document cross-refence color codes against? use case classify results of pil color detection of swatch files small set of color pickers shopping site. work if mapping bit more granular, 100-200 categories, since easy enough map target 10-15 myself. have knowledge of knn classification , work if have to, easier use static mapping if 1 exists.

you can use table such 1 in x11

http://www.astrouw.edu.pl/~jskowron/colors-x11/rgb.html

in order find color proximity, it's best transform colors lab color space first, euclidean distances have more meaning, , nearest neighbor give results.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -