Monday 26 March 2007

ETUDE 4: SOUND ATMOSPHERE PLAYGROUND

Your name

MATTEO FONTANA

Your Pathway Combination

DIGITAL ARTS & MUSIC TECH

The title of your etude

SOUND ATMOSPHERE PLAYGROUND

A short statement of intentions

I AM TRYING TO CREATE A SOUND ENVIRONMENT THAT EVOLVE OR CHANGE THANKS TO THE MOVEMENT CAPTURED BY SOME SENSORS


What you initially wanted the piece to be about / for - its conceptions How you initially intend to create the etude

I WOULD LIKE TO BUILT A SORT OF INTERACTIVE AUDIO SPACE USING SOME PRESET LIBRARIES.
THE SOUNDS PRESENT RESPOND THANKS TO THE SENSOR PLACED IN THE INSTALLATION AREA.

Conceptualization of the work

I WOULD LIKE TO RECREATE A PARTICULAR ATMOSPHERE FOR THE PLACE I WILL CHOOSE,
WHAT IS IMPORTANT IS WHERE I AM GOING TO SET UP THE INSTALLATION, IN FACT THE SURROUNDING NEED TO BE LINKED WITH THE SOUND IN ORDER TO REFLECT WHAT THE SPECTATOR IS SEEING.
THE IDEA IS TO GIVE A SORT OF SENSATION THAT SOMETIMES IS POSSIBLE TO SENSE WHEN YOU STAND IN FRONT OF A LANDSCAPE, OBVIOUSLY EVERYONE DOES USE THEIR OWN JUDGMENT TO INTERPRET WHAT IS SEEN.
LEADING THE PEOPLE THROUGH A SENSORS BASED PATH, HOPEFULLY IT WILL GIVE THE SENSATION ON INTERACT WITH THE PLACE, AND IN A CERTAIN WAY, HAVE THE POSSIBILITY TO CONTROL THE ATMOSPHERE ITSELF.


I ALWAYS BEEN INTERESTED ON IMAGES AND VIDEO BUT I REALIZE THAT A SOUND OR A TRACK IS STILL VERY IMPORTANT IN A VISUAL INSTALLATION. THE SOUNDS GIVE US A SORT OF PERCEPTION THAT LEAD US THROUGH A PARTICULAR MOOD AND MAKE US PERCEPT WHAT IS AROUND US IN A MORE INTENSE WAY. OBVIOUSLY EVERYONE OF US HAVE HIS OWN PERCEPTION OF SOUND AND IMAGES. TAKING CONTROL OF THE SOUNDS CAN REALLY CHANGE THE WAY OF WHAT WE ARE LOOKING.
DEVELOPMENT:

FOR FIRST I STARTED TO THINK ABOUT FEW FEELINGS THAT ARE EXPERIENCED EVERY DAY ALMOST
BY EVERYBODY.
I USED LOGIC AND FEW RECORDING I HAVE MADE TO COMPILE SOME TRACKS.
THE CONCEPT IS REALLY SIMPLE.
I HAVE MANAGED TO DRAW A PATH IN A NORMAL PLAYGROUND AND THE IDEA IS TO PLACE SOME SENSOR THAT ACTIVATE THE SOUND WHILE A PERSON IS PASSING NEARBY.
THE SENSOR WILL NOT ONLY ACTIVATE THE SOUND BUT THEY WILL AFFECT EVEN HIS CONTENT. IT IS POSSIBLE TO CONNECT THE IMPULSE, WITH SOME EFFECT USING THE AUTOMATION TOOL PRESENT IN THE MOST COMMON MUSIC PROGRAM SUCH, ABLETON LIVE, LOGIC, CUBASE ETC.. ETC.. WITH THIS PROCESS THE SENSOR WILL READ THE MOVEMENT INTO THE SUPPORTED RANGE AREA AND IT WILL AFFECT IN REAL TIME THE SOUND PLACED IN THAT PARTICULAR POINT.

CONNECTING THE SENSORS:

I FOUND ON INTERNET THE MIDIsense (WWW.adafruit.com) THAT ALLOW QUITE EASILY TO CREATE A BOARD ALREADY EQUIPPED WITH SENSORS. UNFORTUNATELY THE SITE DON'T SELL THE BOARD ALREADY MADE BUT ONLY THE KIT WHICH MEANS YOU NEED TO HAVE THE PROPER TOOLS AND YOU NEED TO BE REALLY CAREFUL IN ORDER TO DON'T AFFECT THE BOARD WITH THE ELECTRICITY YOU CAN TRANSMIT WITH YOU HANDS.


I DIDN'T BUY YET THE BOARD BUT I THINK THAT THIS IS THE BEST SOLUTION.
"there are 3-4 different boards. Each board is customized to handle a particular kind of sensor. For example, one board handles 'resistive' type sensors: force, bend, and photosensors all act like variable resistors, and require a certain kind of conditioning circuitry. Another board will handle 'capacitive touch' button sensors: this type of sensor requires a specific chip to function. And so on. "

ETUDE: 3 video interactive installations

Your name

MATTEO FONTANA

Your Pathway Combination

DIGITAL ARTS AND MUSIC TECH

The title of your etude

VIDEO INTERACTION AND CAMERA TRACKING ART

A short statement of intentions

I WOULD LIKE TO CREATE A VIDEO INSTALLATION THAT INTERACT WITH THE SHADOW OF THE PEOPLE STANDING IN FRONT OF THE SCREEN.
I HAVE SEEN LOT OF INSTALLATION LIKE THAT BUT NO ONE EXPLAIN HOW TO REALIZE THIS KIND OF PROJECT.


CAMILLE UTTERBACK is one of the first artist I have seen doing an installation like that. the picture above is from her project "Text rain" that involve Participants (using the familiar instrument of their bodies, to do what seems magical - to lift and play with falling letters that do not really exist. In the Text Rain installation participants stand or move in front of a large projection screen. On the screen they see a mirrored video projection of themselves in black and white, combined with a color animation of falling text. Like rain or snow, the text appears to land on participants' heads and arms. The text responds to the participants' motions and can be caught, lifted, and then let fall again. The falling text will land on anything darker than a certain threshold, and "fall" whenever that obstacle is removed)"http://www.camilleutterback.com/

Later on I found out other interesting piece that uses the same technique...............

zack booth Simpson & Ken Demarest ... they create a similar installation to "Text rain" but this time using sand



"A stream of liquid sand flows from above and reacts with your shadow as if it were solid. Its hypnotic motion conjures childhood feelings of playing with water or building wet sandcastles. Like making shadow puppets, you can easily construct concave structures with your hands to catch the sand and then you can pour it from hand to hand or maybe into your friend's mouth. Play with it long enough and you might discover some of its many secrets."(http://www.mine-control.com/sand.html)



WHAT I HAVE UNDERSTAND SO FAR: THE MATERIAL NEEDED IS A PROJECTOR, A CAMERA THAT STREAM THE SIGNAL OF THE PROJECTION STRAIGHT INTO A SOFTWARE. THE PROBLEM IS THAT MOST OF THE SOFTWARE THAT CREATE THIS PROJECT ARE CUSTOM BUILT.
ALL THE APPLICATION AND CODING THAT I HAVE FOUND TEND TO BE CLOSED SOURCE

SO THAT I FIGURED TO START CODING WITH "PROCESSING" WHICH IS AN OPEN SOURCE APPLICATION
THAT EXPLAIN WITH SOME EXAMPLES HOW TO CONNECT A VIDEO PROJECTION INTO A COMPUTER
AND INTERACT WITH IT.
I START TO BUILD SOME SMALL VIDEO WITH ANOTHER OPEN SOURCE SOFTWARE "FLXER" BUT THE CODING I'VE TRIED SUDDENLY DON'T WORK:

Import processing.video.*;

// Variable for capture device
Capture video;
color trackColor;


void setup()
{
size(200, 200);
frameRate(30);
colorMode(RGB,255,255,255,100);
// Using the default capture device
video = new Capture(this, 200, 200, 12);
trackColor = color(0); // Start off tracking for white
noFill();
smooth();
strokeWeight(4.0);
stroke(0);
}

void captureEvent(Capture camera)
{
camera.read();
}

void draw()
{

loadPixels();

// Draw the video image on the background
image(video,0,0);
// Local variables to track the color
float closestDiff = 100.0f;
int newx = 0;
int oldx = 0;
int oldupdatex = 0;
int closestX = 0;
int closestY = 0;
int updatex = 0;
int[] Xs = new int[2];
Xs[0] = 0;
Xs[1] = 0;

int[] upXs = new int[2];
upXs[0] = 0;
upXs[1] = 0;

int count = 0;

// Begin loop to walk through every pixel
for ( int x = 0; x < video.width; x++) {
// for ( int y = 0; y < video.height; y++) {
// int loc = x + y*video.width;
int loc = x + (video.width * 100);
// What is current color
color currentColor = video.pixels[loc];
float r1 = red(currentColor); float g1 = green(currentColor); float b1 = blue(currentColor);
float r2 = red(trackColor); float g2 = green(trackColor); float b2 = blue(trackColor);

// Using euclidean distance to compare colors
float d = dist(r1,g1,b1,r2,g2,b2);
// If current color is more similar to tracked color than
// closest color, save current location and current difference
if (d < closestDiff) {
// println (Xs[0] + " " + Xs[1]);
// if (x > 0){

// println (Xs[0] + " " + Xs[1]);

closestDiff = d;
closestX = x;
Xs[0] = Xs[1];
Xs[1] = x;
// }
// else {Xs[0] = 999;
// Xs[1] = 0;
// }

}


I AM GOING ON TRYING TO LEARN THE CODING FOR THIS APPLICATION AND I THINK I AM WILLING TO BUY ONE ARDUINO CHIP AS WELL.
AS I UNDERSTAND I WILL HAVE MORE POSSIBILITIES.

conceptualization of the work

I THINK THAT THE CONCEPT BEHIND THOSE KIND OF INSTALLATIONS IS THE RELATION BETWEEN THE HUMAN MESSAGE AND THE MACHINE.
CONSIDERING THAT THE SOFTWARE IS AN APPLICATION BUILT BY SOMEONE, IS EASY TO INTERACT
WITH A VIDEO, RESPONDING TO THE MESSAGE THAT THE ARTIST WANT TO GIVE.
USING YOUR BODY IS POSSIBLE TO INTERACT WITH THIS MESSAGE AND JUST FOLLOWING YOUR SENSES GIVE AN UNIQUE RESPONSE. IN THIS CASE WHAT IS CONSIDERED AS ART, IS NOT THE PIECE ITSELF, BUT THE MESSAGE THAT CAME OUT WITH THIS HI-TECH TOOL.

write about

I THINK THAT THE MAIN POINT OF A COMMUNICATION IS THE RESPONSE YOU CAN GET FROM SOMEONE.
LIKE THAT, YOU CAN UNDERSTAND IF YOU STATEMENT ARE CORRECT, OR IS SIMPLY SATISFYING HAVING A SORT OF RESPONSE......
WITH A VIDEO INTERACTIVE INSTALLATION THIS RESPONSE CAN BE GIVEN IN A DIFFERENT AND MORE ARTISTIC WAY LEADING THE ARTIST INTO A MORE INSPIRATIONAL STATE, BECAUSE THE DIALOGUE IS JUST DIFFERENT.

how successful is the Etude

THIS RESEARCH BROUGHT ME INTO A FIELD I HAVE NEVER CONSIDER.
AT THE END I COULDN'T GET WORKING THE CODE BUT SEEING OTHER PEOPLE PROJECT KEPT ME GOING ON. I THINK THAT I'LL CAME OUT WITH SOMETHING MAYBE ASKING SOME HELP TO THOSE GUYS THAT ALREADY DID THIS INSTALLATION.

Sunday 25 March 2007

ETUDE 2 : UV LIGHT AND SMALL PROJECTS

Your name

MATTEO FONTANA

Your Pathway Combination
DIGITAL ARTS and MUSIC TECH

The title of your etude
UV LIGHT IN A COMPUTER BASED ENVIRONMENT

A short statement of intentions
I WANT TO RESEARCH THE VARIOUS FUNCTION OF THE UV LIGHT AND HOW THEY CAN BE USED IN AN ARTISTIC WAY
EXPERIMENTING AS MUCH AS POSSIBLE TO FIND OUT WHAT ARE THE VARIOUS CONNECTION POSSIBLE.

What you initially wanted the piece to be about / for - its conceptions How you initially intend to create the etude
I WOULD LIKE TO GAIN THE KNOLEDGE OF THE USE OF THOSE LIGHT IN ORDER TO EXPRESS WITHOUT LIMITATION EVERY POSSIBLE EFFECT I CAN GET.
Conceptualisation of the work

WHAT I LIKE OF THOSE LIGHTS IS THE FACT THAT THEY'RE NOT REALLY REAL, IN FACT YOU CAN SEE THEM ONLY UNDER PARTICULAR SITUATION. THE UV LIGHT IS MORE VISIBLE ON WHITE SURFACES AND IN A DARK ENVIRONMENT ETC.. ETC..
THOSE LIMITATION CAN LEAD THE ARTISTS IN DISCOVER MORE VARIOUS TECHNIQUES AND GIVE ONE MORE TOOL OF EXPRESSION.

Write about:

RESEARCHING IN THOSE LIGHTS I HOPE TO GAIN A COMPLETE VISION OF THE FUNCTIONALITIES IN ORDER TO SOLVE ALL KIND OF LIMITATION I COULD ENCOUNTER. MY INTENTION IS TO GO ON WITH IT AND USE ALL THE PATHS POSSIBLE TO GET AN EASY WAY OF EXPRESS MY INTENTIONS

Documentation of Technical and Artistic Process

LOOKING AT VARIOUS WEB SITES I HAVE DISCOVERED MANY PROJECTS THAT USES UV LIGHT .
REALLY NICE ONE IS HOW TO BUILD AN UV LAMP FROM AN OLD SCANNER


THIS IS A REAL PROJECT I'M USING PICTURES AND MATERIAL FOUND IN THIS LINK (http://www.instructables.com/id/EAQTE8M7FIEXCFHAL0/) THE PROJECT YOU'LL FIND IN THIS ETUDE RAPRESENT ONE OF EXPERIMENT I HAVE TRIED TO DO IN ORDER TO UNDERSATND THE FUNCTIONALITY OF THE UV LIGHT...
I AM NOT GOING TO POST ALL THE PROJECTS I HAVE DONE BUT ONLY THE ONES THAT I THINK HAVE SOME KIND OF RELATION WITH A COMPUTER BASED ENIRONMENT

1)

First of all, safety. Notice that this is a mains powered device so maximum care must be taken in the design to insure that for no reason someone may come into contact with live parts. If you are not sure about medium voltage (mains) electrical wiring practice ask a friend or someone else whom is.



2)

First thing I did was to disembowel the scanner, after all what I needed was the case with glass and cover. No electrical parts where reused. Of course you may want to save the motors, belts, screws, head parts...You know, almost everything.

Then I opted for 3 tubes (around 8 Euro each), with ballasts and starters (6/7 Euro for each set). The switch, fuse holder and mains socket I scavenged from somewhere.
For the bottom plane I used a tin sheet. This acts as a sort of mirror/diffuser for UVs.
I used also some scrap aluminum bars from kitchen furnitures, their colour in the pictures tell it. Spacers and screws as required.

Now, the pictures show the electric diagram and the interior of the UV bed.
The circuit is based on three TL5 8W wood light tubes. Each tube is powered by its own ballast and starter . The number of tubes can be increased at will. The circuit is provided with a safety fuse and a power switch. A power socket (taken from a PC power supply) complements the circuit.

All metallic parts inside that have an external metallic counterpart electrically connect to it, must be earthed i.e. connected to the ground line. This is an important safety measure: if something goes wrong and the metal inside becomes 'live' the safety switch or fuse you have in your home trips off and no one is injured. Otherwise the external metallic part may become live without anyone noticing until touched. In my case, since I used a metallic bottom and metallic spacers and screws to hold it to the case, I bolted the metallic bottom to the ground.


3)


Grommets must be used where the wires cross the metallic plane so as the plastic insulator of the
electric wire does not wear out against the metal plane.

The fuse must be rated for the lamps used. In my case 3x8W 220Vac require a 0.5A fuse.

The tubes, ballasts and starters must be rated togheter. Too high rated the ballast and the tubes
get burnt, too low rated and the ballasts burn. Ballasts are typically rated with ranges e.g. 4-20W.
With different wiring and rating one ballast can serve two tubes. Check with the ballast supplier.

As a second thought, I think I shouldn't have removed the scanner's head. I should have mounted one single tube to the moving head of the scanner and use the stepper motor and belt to move the head back and forth.
To provide a uniform lighting the head should have been moved with a non-uniform speed (arcsinusoidal, or inverse sin function, I am guessing). Exposure time would be given by the head-lamp scanning faster or slower as required. But that's another story

One final important notice: UVs are dangerous to the eyes, so do not stare at the tubes when lit.



















MY IDEA

THE PROJECT I INTEND TO REALIZE THANKS TO THE KNOLEDGE I HAVE GAIN FROM INSTRUCTABLES

I WANT TO BUILD A BOARD AND SPRAY OVER SOME UV SENSITIVE PAINT...
PLACING A UV LIGHT IN FRONT OF THE BOARD I WOULD LIKE TO BE ABLE TO DRAW SHAPES WITH THE SHADOW USING RANDOM OBJECT OR EVEN USING MY HANDS....

PLACING THE OBJECT BETWEEN THE LIGHT AND THE BOARD WILL CAPTURE THE OBJECT SHAPE.
EXPERIMENTING MORE THAN ONE COMBINATION I WILL BE ABLE TO CREATE AN ACTUAL DRAW THAT OF COURSE IT WILL DISAPPEAR WHEN THE LIGHT WILL HIT THE BOARD AGAIN



THE CONCEPT OF THIS WORK IS TO GET A REVERSE USE OF THE UV LIGHT.
IN FACT WHAT WE NOTICE IN FRONT OF A UV INSTALLATION IS THE DRAW MADE BY THE UV LIGHT.
WITH THIS METHOD I WANT TO HIGHLIGHT THE EFFECT CAUSED BY THE SHADOW.

I HOPE THAT THIS TECHNIQUE WILL OFFER OTHER WAY OF INSPIRATION FOR THOSE WHO ENJOY USE THIS INSTALLATION.

THE MEANING I CAN FIND CAN START FROM DIFFERENT POINTS OF VIEW. FOR EXAMPLE THE TIME THAT THE DRAW IT'S GOING TO STAY ON THE BOARD, OR THE NEXT OBJECT THAT WILL APPEAR CAN BE RELATE WITH THE ONE BEFORE.