Saturday, October 13, 2018

Processing3.4とJava Image Filtersを使用して明るさ・コントラストを変更する

Processing3.4とJava Image Filtersを使用して明るさ・コントラストを変更するには、以下のコードを実行します。Java Image Filtersはhttp://www.jhlabs.com/ip/filters/download.htmlからFilters.jarをダウンロードしてSketchのフォルダのcodeサブフォルダに配置します。

// キャンバスサイズ
size(200, 200);
PImage img = loadImage("SF.JPG");
ContrastFilter cf = new ContrastFilter();
// 明るさを50%に
cf.setBrightness(0.5f);
PImage img2 = new PImage(cf.filter((java.awt.image.BufferedImage)img.getImage(), null));
image(img2, 0, 0);
// ファイル保存
save("sample1439a.png");

// コントラストを150%
ContrastFilter cf2 = new ContrastFilter();
cf2.setContrast(1.5f);
PImage img3 = new PImage(cf2.filter((java.awt.image.BufferedImage)img.getImage(), null));
image(img3, 0, 0);
// ファイル保存
save("sample1439b.png");

元画像(sf.jpg):dataサブディレクトリに配置か、Add Filesで追加。


出力画像1(sample1439a.png)


出力画像2(sample1439b.png)


○動作環境
Processing 3.4/Processing 1.0.7

〇関連項目
・Processingをインストールした仮想マシンを構築するには、以下のページを参照してください。
https://serverarekore.blogspot.com/search/label/Processing

・Processingに関する他の記事は、こちらを参照してください。

No comments: