Friday, October 12, 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サブフォルダに配置します。

import com.jhlabs.image.*;
// キャンバスサイズ
size(300, 225);
// 画像はdataディレクトリに置いておく
PImage img = loadImage("sf2.jpg");
DiffuseFilter df = new DiffuseFilter();
df.setScale(10);
PImage img2 = new PImage(df.filter((java.awt.image.BufferedImage)img.getImage(), null));
image(img2, 0, 0);
// ファイル保存
save("sample1437a.png");

元画像(sf2.jpg):dataサブフォルダに配置します。


出力画像(sample1437a.png)


〇動作環境
Processing 3.4, Filters

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

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

No comments: