Monday, November 7, 2011

Concept 02.

Love language

I saw a couple walked on the street, a girl said "I almost only watch entertainment news." and, the boy was smiling and nodding his head said "I usually watch sports news." Then, the girl said, Oh, we are like opposite. In a relationship, boys and girls think very differently, the words boys say oftenly mean nothing close to girl's thought, and boys and girls have different definition of spending some time together, or even receiving the same gifts but they are different signs in boys and girls mind. In this condition, I believe even we are not couple counselor or expert everybody could have a long speech from their experiences.

I would like to make a video and show a girl and a boy are having the same schedule for a date, what do they think and how do they react to the same thing or what's really in their minds in 2 different love languages.

Research/Reference

http://headdrama.com/article/love/30/7920/love-in-different-languages
http://momitforward.com/forums/showthread.php/889-The-Five-Love-Languages-Book-Club-Discussion/page4

Concept 01.

I'm a superhero too.

While reading comic books people always wish they could be the main character or one of the superheroes saved the world. At the gaming world, customize our own character isn't really a fresh idea but this never happened in comic books, so if we can actually read our own comic and be the main character that we dream of, that will be a unique story reading experience. People don't have to be superman or other superheroes, they could be just themselves and have their own epic battles, be the one speak out the touching line and save our love and friends from villains in this comic book.

This could be an app prototype to display how people can customize their look and outfit also simulates a different style to read a comic book.

Research/Reference

http://www.youtube.com/watch?v=o7wrCUIGnc4
http://www.youtube.com/watch?v=RnEzrChVhEI&feature=related

AR/ Augmented Reality

http://en.wikipedia.org/wiki/Augmented_reality
http://www.howstuffworks.com/augmented-reality.htm
http://mashable.com/2009/12/05/augmented-reality-iphone/

Friday, November 4, 2011

Midterm01


import processing.serial.*;
import cc.arduino.*;
int sensorUsed = 0; //Set
this to whatever input sensor io pin you're using
PImage bird;
Arduino arduino;
void setup() {
size(400, 400);
arduino = new Arduino(this,
Arduino.list()[0], 57600);

for (int i = 0; i <= 13;
i++) //prepare all the pins for
receiving input
arduino.pinMode(i,
Arduino.INPUT);
imageMode(CENTER);
}
void draw() {
background(255);
fill(0, 0, 255);

//if the sensor switch
float sensorValue =
arduino.analogRead(sensorUsed);
float sensorValueMapped =
map (sensorValue, 0, 200, 500, width);
bird =
loadImage("Bwire.jpg");
image(bird, width/2,
height/2, sensorValueMapped, 400);

}

Midterm02


import processing.serial.*;
import cc.arduino.*;
import processing.video.*;
int sensorUsed = 0; //Set
this to whatever input sensor io pin you're using
PImage cat;
Movie myMovie;
//color myMovieColors[];
Arduino arduino;
int switcher = 0;
void setup() {
size(641, 481, P2D);
arduino = new Arduino(this,
Arduino.list()[0], 57600);
myMovie = new Movie(this,
"../Bwire.mov");
myMovie.loop();
image(myMovie, 0, 0);
}
void movieEvent(Movie m) {
m.read();

}
void draw() {
image(myMovie, 0, 0);
fill(0, 0, 255);
//if the sensor switch
float sensorValue =
arduino.analogRead(sensorUsed);
float sensorValueMapped =
map (sensorValue, 0, 1024, 150, width);
tint(255);
if(sensorValueMapped
> 400){
myMovie.loop();
switcher = 1;
}
else if (sensorValueMapped
== 150){
if (switcher == 0)
myMovie.jump(2);
if (switcher == 1)
myMovie.pause();
}

println(sensorValueMapped);
}

Sunday, October 9, 2011

5in5 #P5 Catwalk

5in5 Project#5 Catwalk

This project is my final project of this 5in5 project. The main character is still my cat, I recorded him walked over the room and again I edited ths video brought it to Processing.

When you load the code you will see the video is not playing well at begining that is because this code basically allow you to forward or reverse the video by the horizon of your mouse direction. So that is also the purpose I shoot the video of my cat walk over from left to right direction.

5in5 #P4 Meow

5in5 Project#4 Meow

At this project, it still is a cat topic project. First of all, I recorded meow sound from my cat and I edited it short in order to import to Processing.

So when you hit the "M" key, basically this code will show you the sound wave based on the cat's sound, also it depends on the frequency of hitting that key, sound wave will show up differently.


5in5 #P3 3D Cat

5in5 project#3 3D cat

I extended the topic from last project, I still chose cat as my topic. At this project, I took a picture of my cat, and I painted the picture in Photoshop as 3D texture later I imported the image as resource to the code.

Inside of this code there is a sphere with my cat image attached. when you shift around your mouse, you can see this cat head ball rotating at the center in 360 degree in all xyz directions.