-
-
-
-
-
-
I’m so honored to have been included as a featured artist in Conveyor issue #4: Dark Matter!.
If you’re around New York, come on out this Saturday and Sunday to the Dark Matter launch party / pop up exhibition at The Wild Project. I’ve got some work on the walls alongside the amazingly talented Sam A. Harris, and Robert Canali.
If you can’t make it, you can still pick up this issue of Conveyor here!
Hope to see you there!!
-
-
-
-
-
-
-
Torus in Planetary Nebula NGC1589
Image courtesy of: NASA, ESA, Hubble Heritage Team (STScI/AURA) -
//More Pixel Sorting - WhiteClay
PImage img;
int threshold = 153;
void setup() {
img=loadImage(“whiteClay_720x541_000_0478.jpg”);
size(img.width,img.height);
}
void draw() {
for (int w=0; w<img.width*img.height; w++){
img.loadPixels();
if ((img.pixels[w]%threshold) == 0) {
if (w > img.width) {
if (brightness(img.pixels[w]) > threshold) {
img.pixels[w-img.width] = img.pixels[w];
}
}
}
img.updatePixels();
}
image(img,0,0);
} -
collisional ring
NGC922 courtesy of NASA, ESA; Acknowledgement: Nick Rose