Etc2007. 12. 1. 16:09
출석
김기창, 전주영, 김정운, 김상은. 최주영, 변수홍, 유승환, 양정애, 꽁님

지각..?

오늘할 내용

전시에 대한 발표

Posted by 알 수 없는 사용자
Etc/전시준비2007. 12. 1. 15:33

≠ ! =  
  

sadi cd과
김상은

concept
여행을 다니면서 찾을 수 있는 무었인가를 수집하여 map을 만든다.

concept statement
여행에서 수집한 감성이나 자연에 관한 정보를 수학을 이용하여 수치화하고 공식으로 바꾸거나 대입하고 변환시켜 어떤 규칙을 만들어 내어 그것을 이미지화 시키는 작업을 한다.

구현방법
출력물 // 맥, 모니터

key word
information ⇔ or = emotion
math ⇔ or = nature


레퍼런스
http://www.friendsofed.com/fmc/FMCv2/FMC.html


사용자 삽입 이미지
사용자 삽입 이미지

Posted by 알 수 없는 사용자
Etc2007. 11. 24. 11:20
출석
김상은, 김정운, 유승환, 양정애, 최주영,서효정 교수님ㅋ, 김남윤

지각...
김기창, 공혜선

결석


오늘 한 내용



Posted by 알 수 없는 사용자
출석
김남윤, 최주영, 양정애, 변수홍, 전주영, 유승환, 김상은, 김후동, //박상현

다음주 과제..

자기만의 시계 만들어 오기
방학끝나고 전시할 작품 컨셉다음주에 발표하도록 해오기.
필수로 해올 것은..  컨셉, 브레인 스토밍, 레퍼런스 가져올 것 ..

다음주 발표  (다시 전에 했던 조대로 다시 돌아가기로 했음)
기창, 정애
프로세싱책 shape2 vertices (69page)

오늘 공부한 내용


//camera


import processing.video.*;

Capture camera;

void setup() {
  size (640, 480);
  colorMode(HSB, 256);
  noStroke();
 

  camera = new Capture(this, width, height, 12);
  loadPixels();
     camera.loadPixels();

void draw() {
   background(0);
   
 for(int y=0 ; y < height ; y+=10) {
    for(int x=0 ; x < width ; x+=10) {
      int pos = (y * width) + x;
      color c = camera.pixels[pos];
      float h = hue(c);
      float s = saturation(c);
      float b = 20 * brightness(c) / 256;
     
      fill(h, s, 256);
      ellipse(x, y, b, b);
    }
  }
}
 
void captureEvent(Capture camera) {
  camera.read();
}




Posted by 알 수 없는 사용자
void setup(){
size(1200,200);
smooth();
background(0);
strokeWeight(2);
colorMode(HSB,100);
}
void draw(){
for(int i = 0; i < width; i++) {
  float h = random(2);
  float s = random(100);
  float b = random(100);
  float a = random(100);
  float x = random(0, width);
  stroke(h,s,b,a);
  line(i, 0, x, height);
}
}


random과 for문에 대해서 배워보는 시간이었습니다.


Posted by 알 수 없는 사용자