在4.1后,主要介绍第二法的模仿图像绘制出新图像。图像本质上是颜色数据库,图像复制的第二法相当于通过绘图算法创建一幅画,可运用于模糊、锐化、清晰度、平均光滑、绑定边缘。
此章介绍圆点覆盖,先介绍1的随机颜色圆点覆盖,再介绍2的图像取色圆点覆盖。
input:
PImage mount;
void setup(){
size(600,445);
mount = loadImage("xueshan600x445.jpg");
background(0);
}
void draw(){
image(mount,0,0);
float x = random(width);
float y = random(height);
//1、最简单的无数圆点取色覆盖
//fill(0,random(151),230);
//ellipse(x,y,16,16); //随机白点覆盖
//2、图像取色画圆点
color c = mount.get(int(x),int(y));
fill(c);
ellipse(x,y,16,16);
}
output: