// キャンバスサイズ
size(300,225);
PImage img = loadImage("sf2.jpg");
// 万華鏡のような画像を生成する
KaleidoscopeFilter kf = new KaleidoscopeFilter();
// 面数
kf.setSides(6);
// 角度1
kf.setAngle(20f/180f*ImageMath.PI);
// 角度2
kf.setAngle2(50f/180f*ImageMath.PI);
// 中心X
kf.setCentreX(0.5f);
// 中心Y
kf.setCentreY(0.5f);
// 半径
kf.setRadius(100);
PImage img2 = new PImage(kf.filter((java.awt.image.BufferedImage)img.getImage(), null));
image(img2, 0, 0);
// ファイル保存
save("sample1469a.png");
元画像(sf2.jpg):dataサブディレクトリに配置か、Add Filesで追加。
出力画像(sample1469a.png)
ProcessingとJava Image Filtersを使用して作成した万華鏡のような画像
〇動作環境
Processing 3.4
〇関連項目
・Processingをインストールした仮想マシンを構築するには、以下のページを参照してください。
https://serverarekore.blogspot.com/search/label/Processing
・Processingに関する他の記事は、こちらを参照してください。
No comments:
Post a Comment