自动图像背景去除软件

发布于 2024-10-28 19:21:57 字数 1539 浏览 2 评论 0原文

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

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

发布评论

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

评论(3

守不住的情 2024-11-04 19:21:57

尝试一下(使用 ImageMagick):

convert picture.jpg -fill none -fuzz 12% -draw "matte 0,0 floodfill" -flop  -draw "matte 0,0 floodfill" -flip  -draw "matte 0,0 floodfill" -flop  -draw "matte 0,0 floodfill" -flip  result.png

它基本上需要一个图像文件(即 picture.jpg),并使用 12% 的模糊因子(您可以使用此值以获得更好的结果)基于图像进行洪水填充图像四个角的像素颜色。经过所有这些过程,输出的图像是result.png

基于这篇文章: http://snippets .aktagon.com/snippets/558-how-to-remove-a-background-with-imagemagick

Try this (using ImageMagick):

convert picture.jpg -fill none -fuzz 12% -draw "matte 0,0 floodfill" -flop  -draw "matte 0,0 floodfill" -flip  -draw "matte 0,0 floodfill" -flop  -draw "matte 0,0 floodfill" -flip  result.png

It basically takes an image file (i.e. picture.jpg), and using a fuzz factor of 12% (you can play with this value for better results) floodfills the image based on the pixel colors of the image's four corners. After all that process, the image outputted is result.png.

Based on this post: http://snippets.aktagon.com/snippets/558-how-to-remove-a-background-with-imagemagick

塔塔猫 2024-11-04 19:21:57

您如何使用 Imagemagick?我正在一个项目中使用以下命令执行类似的操作:

# Detect modified pixels
composite -compose difference picture1.jpg picture2.jpg diff.png
# Ignore minor differences (jpeg noise)
convert -threshold 25% diff.png diff2.png
# Apply mask
composite -compose CopyOpacity diff2.png picture.jpg result.png

注意:我使用非常旧的 imageMagick 版本(6.2.4.3)。命令语法可能已更改。

How are you using Imagemagick? I am doing something similar in one project, with this commands:

# Detect modified pixels
composite -compose difference picture1.jpg picture2.jpg diff.png
# Ignore minor differences (jpeg noise)
convert -threshold 25% diff.png diff2.png
# Apply mask
composite -compose CopyOpacity diff2.png picture.jpg result.png

Note: I use a very old imageMagick version (6.2.4.3). Commands syntax may have changed.

霊感 2024-11-04 19:21:57

http://FotoFuze.com 半自动进行背景去除,并为产品摄影提供出色的质量效果!

http://FotoFuze.com does background removal semi-automatically and has great quality results for product photography!

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