xxxxxxxxxx
61
// https://happycoding.io/examples/p5js/images/pixel-sorter
let img;
function preload() {
img = loadImage("images/cat-3.jpg");
// Click the > menu to the left and look in
// the images directory for more images to try!
// Or upload your own image!
// URLs also work, like this:
// img = loadImage('https://upload.wikimedia.org/wikipedia/commons/6/69/June_odd-eyed-cat_cropped.jpg');
}
function setup() {
createCanvas(500, 500);
// Resize the image so it fits on the screen.
// We make it 100x100 so we can see individual pixels.
img.resize(100, 100);
noSmooth();
}
function draw() {
img.loadPixels();
// Loop 1000 times to speed up the animation.
for (let i = 0; i < 1000; i++) {
sortPixels();
}
img.updatePixels();
image(img, 0, 0, width, height);
}
function sortPixels() {
// Get a random pixel.
const x = random(img.width);
const y = random(img.height - 1);
// Get the color of the pixel.
const colorOne = img.get(x, y);
// Get the color of the pixel below the first one.
const colorTwo = img.get(x, y + 1);
// Get the total R+G+B of both colors.
const totalOne = red(colorOne) + green(colorOne) + blue(colorTwo);
const totalTwo = red(colorTwo) + green(colorTwo) + blue(colorTwo);
// If the first total is less than the second total, swap the pixels.
// This causes darker colors to fall to the bottom,
// and light pixels to rise to the top.
if (totalOne < totalTwo) {
img.set(x, y, colorTwo);
img.set(x, y + 1, colorOne);
}
}