影像反鋸齒處理

模糊真的很好用,因為模糊捨棄了「細節」,再結合二值化(Image Thresholding),就可以讓原有的資訊變的更圓潤和飽滿,可以做出反鋸齒(Anti-aliasing)的效果。

前置作業

Max腳本檔案下載:
https://github.com/max32002/MaxFontScripts/blob/master/anti-aliasing.py


使用範例

指令範例:

anti-aliasing.py --input A.png --output B.png

執行結果:

參數說明:

  • –input 來源檔案
  • –output 輸出檔案
  • –strength 模糊強, 預設值=2, 輸入值從 0 到 N
以下示範強度值從 0 到 5 的 6個變化:

建議值, 設在 2 效果比較好, 對品質要求較高請設為1.


相關文章

小圖放大有鋸齒馬賽克,三步快速變清晰
https://krita.max-everyday.com/3-steps-anti-aliasing/

opencv python 影像模糊與反鋸齒處理
https://stackoverflow.max-everyday.com/2021/07/opencv-python-image-blur-anti-aliasing/