ScriptomとImageMagickで画像を2値化するには、以下のコードを実行します。
import org.codehaus.groovy.scriptom.*
Scriptom.inApartment
{
im = new ActiveXObject("ImageMagickObject.MagickImage.1")
im.convert("sf.jpg", "-threshold", "60%", "sample1062a.png")
}
元画像(sf.jpg)
出力画像(sample1062a.png)
関連項目
ScriptomとImageMagickで画像を反転させる
No comments:
Post a Comment