我如何能够更好地使用此命令来检测透明水印?

时间:2017-03-08 17:10:03

标签: imagemagick

我有一个简单的命令用于检测透明水印,将水印转换为黑色,但此命令无法检测到圆圈但有额外空间

enter image description here

convert -noise 20x20 resultnn.png output.jpg
convert output.jpg  +dither -posterize 2 mono12.png 

我怎么能做得更好

这是我的输出

enter image description here

我期待这样的事情

enter image description here

我能做什么

做一个作物我得到了这个

     convert mono12.png   -fuzz 10% -fill blue +opaque  "#000000"  monod12.png 

      corde=$(convert monod12.png  -median 3x3 -format %@ info:)
     convert resultnn.png   -crop $corde +repage  resulnmonod12.png 

enter image description here

这是我预期的输出

enter image description here

我需要检测圆圈;我会用命令按颜色检测它;但由于这是一个透明的水印,这是不可能的

请帮帮我

0 个答案:

没有答案