有没有用Ruby构建的颜色识别库?

时间:2012-01-30 22:08:08

标签: ruby colors

我正在尝试集成一种颜色识别工具,用于识别图像的首要颜色,并根据该颜色的十六进制代码标记/标记图像。

1 个答案:

答案 0 :(得分:0)

require 'rubygems'
require 'RMagick'
include Magick

image = Image.read("stack.png")[0]
hash = image.color_histogram
color, number = hash.max{|a,b| a[1] <=> b[1]}
puts color.to_color

这是一个类似的问题

Image color recognition, the general color