-1

我正在寻找一个 Java 包,它允许我按图像的详细程度对图像进行排序。我想创建一个服务来扫描图像并过滤掉不感兴趣的图像。我知道没有绝对的方法可以做到,但我想尽最大努力。

谢谢!

4

1 回答 1

1

使用opencv非常强大的库来玩图像。

这是给您的示例算法。

Convert your image from RGB to GrayScale image. 

Sum color of your image pixel by pixel// there was a sum() method that automatically sums.

Divide the result to numPixel(=height*width)//there may be methods like mean()

Get the standard deviation of the pixels// if stdDev > thresh then it is "interesting image"
于 2013-05-04T16:08:33.197 回答