Monday, April 20, 2009

ScriptomとImageMagickで画像を2値化する

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とgroovyで2値化した画像

関連項目
ScriptomとImageMagickで画像を反転させる

No comments: