View allAll Photos Tagged processor
during the 14+ years of working under the name elbow, i usually just stumble into something for my own identity.
spent some time this week working out something new.
Running a user experience workshop for a client helps us understand the touch points that customers and staff experience. It's low tech - postitnotes, markers, sweets - and it's the conversation that counts
Experimental program done with processing.
All screenshots have been captured live in real time.
More info and videos here: blog.goodthink.biz/particles-typography-3d/
Video: vimeo.com/51206202
This is a rather ugly tree to most but it is a favorite for me. Looks like it has had some struggles in it's lifetime, like most of us. I believe it lost it's top in a lightning strike. I just played with some Elements tools until I got something that pleased me.
File name: 08_06_003810
Title: Parade
Creator/Contributor: Jones, Leslie, 1886-1967 (photographer)
Date created: 1917 - 1934 (approximate)
Physical description: 1 negative : glass, black & white ; 4 x 5 in.
Genre: Glass negatives
Subjects: Parades & processions
Notes: Title from information provided by Leslie Jones or the Boston Public Library on the negative or negative sleeve.; Date supplied by cataloger.
Collection: Leslie Jones Collection
Location: Boston Public Library, Print Department
Rights: Copyright © Leslie Jones.
Preferred citation: Courtesy of the Boston Public Library, Leslie Jones Collection.
that one was loooooong to export.
also, i like to share code. so here it is:
import hipstersinc.sunflow.*;
import hipstersinc.sunflow.shader.*;
import hipstersinc.*;
void setup() {
size(800, 600, "hipstersinc.P5Sunflow");
noLoop();
colorMode(HSB,100,100,100,100);
}
void draw() {
background(255);
int hf=int(random(100)); // colors for fill
int sf=int(random(100));
int bf=int(random(100));
int af=int(random(50)); // alpha :)
noStroke();
int numSpheres = 50;
float yStep = width/20;
float y = 40;
for(int i=0; i<numSpheres; i++) {
pushMatrix();
translate(10, -height/8,-100);
rotate(PI/6);
//fill( i*(255/numSpheres), random(100, 200), random(0, 100) );
fill(i*random(hf),sf,bf,af/(i+1));
beginShape(QUADS);
vertex(random(width/2),random(200),-random(300));
vertex(random(width),random(200),random(-300));
vertex(random(width),random(height),random(-600));
vertex(random(width),random(200),random(-300));
vertex(random(width),random(200),random(-300));
vertex(random(width),random(height/2),random(-300));
vertex(random(width),random(height/2),random(-300));
vertex(random(width),random(height/2),random(-300));
endShape();
popMatrix();
y += yStep;
}
translate(0,0,-100);
}
Dept. of Chemical Engineering & Applied Chemistry - Mahadevan Lab, Faculty of Applied Science & Engineering, University of Toronto
Photo by Sara Collaton
Throughout my honours year, I photographed all my processes and elements which I worked at.
These are a selection of these images
Tumblr | Facebook | Twitter | Personal Website | Model Mayhem
Another buck I haven't seen on the RS plot before. He is lip curling here, a gland in his mouth tells him if a doe is in estrus. Generally the real rut occurs when temperatures are below 40 degrees. This is probably to keep the bucks from killing themselves chasing does. During the rut, they eat and sleep little and become dehydrated and exhausted. Right now I'd rate this 8-pt as A4 on the alpha scale. I know there are three bigger bucks in the area and suspect there are more.
RAW, PS Elements.
A designed publication that documents the creative process of a year long design project centering on the idea of developing emotion as a communicative medium.
This book follows the development of the project from initial brainstorming stage right till the final execution of different experimental approaches.
374 pages, laser-prints on off white munken print cream paper, perfect bind.
This sign hangs in the Rib Crib in Searcy, AR.
For the record, the ribs are phenomenal!
Processed with Flare using the Video Transfer preset.
I drilled holes in the base of the antlers and the pedicles, cut the pipe down to the right length and fitted them with some apoxy sculpt. The finished product allows the antlers to stay in place whilst up on the wall however the antlers easily slide on and off for easier transport, or if I wanted to display a different pair of antlers.
Took a picture of a picture...processed a little bit. The original color image was bland...I like the B&W and the grain.
Process Collaboration with my friend Zavo / Tunjuelito Bogotá / colaboración con el compadre Zavo en San Vicente Tunjuelito //
File name: 08_06_003733
Title: Armistice Day Parade in Boston on Tremont St.
Creator/Contributor: Jones, Leslie, 1886-1967 (photographer)
Date created: 1929-11
Physical description: 1 negative : glass, black & white ; 4 x 5 in.
Genre: Glass negatives
Subjects: Military parades & ceremonies; Anniversaries
Notes: Title and date from information provided by Leslie Jones or the Boston Public Library on the negative or negative sleeve.
Collection: Leslie Jones Collection
Location: Boston Public Library, Print Department
Rights: Copyright © Leslie Jones.
Preferred citation: Courtesy of the Boston Public Library, Leslie Jones Collection.
This may drive purists up the wall. Apologies beforehand.
I've recently learned about the language processing, where you can write your own visual scripts. Fairly cool stuff. This is a "filter" that basically expands pixels with transparency into overlays of squares of varying dimensions.
Nothing cooler than writing your own software to manipulate an image. Kind of like artistic hacking.
This image accompanies this science story written by GrrlScientist and published on The Guardian.
Fire-tailed Myzornis, Myzornis pyrrhoura, a monotypic species that was recently (2009) placed into the Old World warbler family Sylviidae. This Asian species lives in moist subtropical or tropical montane forests in the Himalayas.
Image: Price T.D., Hooper D.M., Buchanan C.D., Johansson U.S., Tietze D.T., Alström P., Olsson U., Ghosh-Harihar M., Ishtiaq F. & Gupta S.K. & (2014). Niche filling slows the diversification of Himalayan songbirds, Nature, doi:10.1038/nature13272.
An example of some capabilities of the Processing application. This was generated using code from a tutorial by Amnon Owed.
www.flickr.com/photos/amnonp5/7387457310/
github.com/AmnonOwed/P5_CanTut_GeometryTexturesShaders2B8...