Sunday, January 04, 2009

groovyで画像を2値化する

groovyで画像を2値化するには、以下のコードを実行します。


import groovy.swing.j2d.*

def gr = new GraphicsRenderer()
gr.renderToFile("sample855a.png", 200, 200){
antialias("on")
rect( x: 0, y: 0, width: 200, height: 200,
borderColor: no){
texturePaint(x: 0, y: 0, file: 'sf.jpg' )
filters {
threshold(lowerThreshold: 128,
upperThreshold: 127,
white: color("orange"),
black: color("white"))
}
}
}


元画像(sf.jpg)


出力画像(sample855a.png)
groovyで2値化した画像

動作環境
Groovy1.6.0 Beta2, JDK1.6 Update11

関連項目
groovyで画像に放射ブラーをかける
groovyで画像に水面の波紋のような効果をかける
groovyで画像をシャープにする

No comments: