使用 Image Magick 创建用于 OCR 的黑白图像

发布于 2024-09-01 11:27:51 字数 605 浏览 6 评论 0原文

nice /usr/local/bin/convert \
  -colors 2 \
  -colorspace gray \
  -compress group4 \
   /var/www/html/uploads/pokemon.jpg \
   /var/www/html/uploads/pokemontest.jpg

该命令适用于 Image Magick 的旧版本。

在最新版本中,此方法会生成全黑图像。

nice /usr/local/bin/convert \
  -colorspace gray \
  -compress group4 \
   /var/www/html/uploads/pokemon.jpg \
   /var/www/html/uploads/pokemontest.jpg

nice /usr/local/bin/convert \
   -colors 2 \
    /var/www/html/uploads/pokemontest.jpg \
    /var/www/html/uploads/pokemontestfinal.jpg

这会产生灰度和黑色的双色调图像,但它非常粗糙。一点也不干净。

nice /usr/local/bin/convert \
  -colors 2 \
  -colorspace gray \
  -compress group4 \
   /var/www/html/uploads/pokemon.jpg \
   /var/www/html/uploads/pokemontest.jpg

This command worked with a really OLD version of Image Magick.

With the newest version this method produces a completely black image.

nice /usr/local/bin/convert \
  -colorspace gray \
  -compress group4 \
   /var/www/html/uploads/pokemon.jpg \
   /var/www/html/uploads/pokemontest.jpg

nice /usr/local/bin/convert \
   -colors 2 \
    /var/www/html/uploads/pokemontest.jpg \
    /var/www/html/uploads/pokemontestfinal.jpg

This results in a bitonal gray and black image, but it's really rough. NOT clean at all.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

金兰素衣 2024-09-08 11:27:51

您可以尝试一个简单的

convert  input.jpg  -threshold 50%  output.jpg

(并尝试一下 50% 设置的变体),看看这是否能让您更进一步。

另外,您可能想看看这些答案:

You could try a simple

convert  input.jpg  -threshold 50%  output.jpg

(and play a bit with variations of the 50% setting) and see if this gets you any further.

Also, you may want to have a look at these answers:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文