快速筆記一下 (測試圖檔大約是 7000 x 4000)
有三招
- convert {$file_orig} -morphology thicken '1x3>:1,0,1' {$file_target}
- 把半徑 2 以下的點都拿掉
- convert {$file_orig} -morphology Close Octagon:2 {$file_target}
- 模糊 & 門檻值
- convert -normalize -gaussian-blur 2x2 -threshold 70% input.png output.png
以下是將上面三招混合,可以參考看看
- convert -morphology thicken
'1x3>:1,0,1' -normalize -gaussian-blur 1x3 -threshold 60% -morphology
Close Octagon:1.5 inpug.jpg output.png
- convert -morphology thicken '1x3>:1,0,1' -normalize -threshold 70% sample_c.png output.png
其中高斯模糊其效果可以參考此文件,我這邊把範例圖截取如下:
安裝 ImageMagic
- sudo apt-get install imagemagick
沒有留言:
張貼留言