Skip to content

Instantly share code, notes, and snippets.

@0q98ahdsg3987y1h987y
Created January 8, 2019 12:07
Show Gist options
  • Save 0q98ahdsg3987y1h987y/fcbfab9417488f4c08599faae4c6c445 to your computer and use it in GitHub Desktop.
Save 0q98ahdsg3987y1h987y/fcbfab9417488f4c08599faae4c6c445 to your computer and use it in GitHub Desktop.
hi eva
java.io.File folder;
String[] filenames;
ArrayList<String> filteredFilenames = new ArrayList<String>();
PImage[] imgs;
void setup() {
size(800, 800);
frameRate(2);
// Initialize arrays
folder = new java.io.File(sketchPath("data"));
filenames = folder.list();
// Filter on extension
for(int i = 0; i < filenames.length; i ++) {
if (filenames[i].matches("([^\\s]+(\\.(?i)(jpg|png|gif|bmp))$)")) {
filteredFilenames.add(filenames[i]);
}
}
// Populate image array with all images from the data folder
imgs = new PImage[filteredFilenames.size()];
for(int j = 0; j < filteredFilenames.size(); j ++) {
imgs[j] = loadImage(filteredFilenames.get(j));
// Optional: resize image (leave one argument as 0 to resize proportionally)
imgs[j].resize(width, height);
}
}
void draw() {
// Pick two random indexes, aka which item we want to pick from the images array
int randomIndex0 = int(random(filteredFilenames.size()));
int randomIndex1 = int(random(filteredFilenames.size()));
// Blend two images together using a custom function which accepts two parameters
blendImages(imgs[randomIndex0], imgs[randomIndex1]);
// Optional: save frame
//saveFrame("####.jpg");
}
// Custom function which takes two parameters of type 'PImage'
void blendImages(PImage img0, PImage img1) {
for (int i = 0; i < width; i++) {
for (int j = 0; j < height; j++) {
// Create temporary variables x and y (we could also just use i and j)
int x = i;
int y = j;
// Create variable of type color and set to black
color col = color(0);
// Create two variables of type color which contain the current pixel color value
color c0 = img0.get(x, y);
color c1 = img1.get(x, y);
// Decide what value the variable 'col' should be
if (brightness(c0) > brightness(c1)) {
col = c0;
} else {
col = c1;
}
// Set the pixel at position x, y to the value of color variable 'col'
set(x, y, col);
}
}
}
// Using a different technique to blend images
// Note: two function can not have the same name!
//void blendImages(PImage a, PImage b) {
// image(a, 0, 0);
// blend(b, 0, 0, width, height, 0, 0, width, height, SCREEN);
// filter(BLUR, 3);
// filter(INVERT);
// filter(POSTERIZE, 3);
// //filter(INVERT);
//}
// Optional: save the frame when you press a key, in this case the spacebar
void keyPressed() {
if (key == ' ') {
saveFrame(millis() + "####.jpg");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment