2014年4月27日 星期日

ImageMagic 簡易去浮水印

快速筆記一下 (測試圖檔大約是 7000 x 4000)

有三招 

  1. convert {$file_orig} -morphology thicken '1x3>:1,0,1' {$file_target}
  2. 把半徑 2 以下的點都拿掉
    • convert {$file_orig} -morphology Close Octagon:2 {$file_target}
  3. 模糊 & 門檻值
    • convert -normalize -gaussian-blur 2x2 -threshold 70% input.png output.png

以下是將上面三招混合,可以參考看看

  1. convert -morphology thicken '1x3>:1,0,1' -normalize -gaussian-blur 1x3 -threshold 60% -morphology Close Octagon:1.5 inpug.jpg output.png 
  2. convert -morphology thicken '1x3>:1,0,1' -normalize -threshold 70% sample_c.png output.png
其中高斯模糊其效果可以參考此文件,我這邊把範例圖截取如下:


    安裝 ImageMagic


    •  sudo apt-get install imagemagick  

    沒有留言:

    張貼留言