2009년 4/4분기 할일.ㅋ

|


10,24~25 그랜드 민트 페스티벌 (장소: 올림픽공원)
클럽 미드나이트 선셋
(Club Midnight Sunset)
 :
OL-PARK축구장(벨로드롬)
실내 스테이지, 밴드 음악과 Visual Art 접목
인조 잔디 바닥의 절반은 돔을 설치, 나머지 절반은 entertainment zone(가칭).
동시 수용 2,000~3,000명
http://www.mintpaper.com/v2/gmf_hotline_re.html?no=167



나비 스튜디오 워크샵 Reborn/Ribbon (2)
10월 19일 ~ 11월 12일 (월, 목 저녁 7시~10시)

[출처] Reborn/Ribbon (2)|작성자 nabi studio





그외에~ 피아노 배우기, 쿵후다시배우기, C++정복.ㅋ 등등.
And

[P5] Processing CVLibrary - JMyron bug

|
int[][] GlobCenters discrepancy in JMyron

JMyron라이브러리를 사용하면 블랍검출에서 버그가 있다


int[][] a;
  //draw center points of globs
  a = m.globCenters();
  float avX=0;
  float avY=0;
  for( int i = 0; i < a.length; i++ ){  // 0번 블랍 부터  블랍의 총 갯수의 중심좌표를 구한다.
    float mapX = map(a[i][0], 0, camW, 0, width);
    float mapY = map(a[i][1], 0, camH, 0, height);
    point( mapX, mapY );
    if(i == 0) {
      avX = mapX;
      avY = mapY;
    }
    if(textOn){
      textFont(font, 12); 
      text(i, mapX, mapY);
    }
  }
원래 라이브러리의 문제점은 블랍의 갯수 1개일때 변수 i = 0번째 블랍만 생기면
위치변수값이 0으로 출력되는 버그이다. 그러나 블랍이 2개이상일때 즉 0번 블랍 1번블랍 이상일때는 정상적으로 작동한다

위의 버그를 수정한 라이브러리는 여기서 다운을 받으시서 사용하시면 버그가 해결된다.
혹은 첨부파일을 다운받으면 해결된다.
And

[P5] 1.06 update

|
프로세싱이 1.06 업데이트 되었다

PROCESSING 1.0.6 (REV 0168) - 12 August 2009

Bug fixes and minor changes. Most important are replacement JOGL libraries
so that OpenGL applets won't present an "expired certificate" error.

[ bug fixes ] 

+ Replaced the faulty JOGL library that had expired certificates (Sun bug).
  http://dev.processing.org/bugs/show_bug.cgi?id=1271
  https://jogl.dev.java.net/servlets/ProjectDocumentList?folderID=9260&expandFolder=9260&folderID=0

+ Updated the Linux launcher script that enables Processing to be run
  from other directories, symlinks, or from launch items.
  http://dev.processing.org/bugs/show_bug.cgi?id=825
  Thanks to Ferdinand Kasper for the fix!

+ strokeWeight() was making lines 2x too thick with P2D
  http://dev.processing.org/bugs/show_bug.cgi?id=1283

+ PImage.getImage() setting the wrong image type
  http://dev.processing.org/bugs/show_bug.cgi?id=1282

+ image() not working with P2D, P3D, and OPENGL when noFill() used
  http://dev.processing.org/bugs/show_bug.cgi?id=1299
  http://dev.processing.org/bugs/show_bug.cgi?id=1222

+ Auto format problem with program deeper then 10 levels
  http://dev.processing.org/bugs/show_bug.cgi?id=1297

+ Fixed a crash on startup problem (console being null)

+ Recursive subfolder copy of library folders when exporting application
  http://dev.processing.org/bugs/show_bug.cgi?id=1295

[ changes ]

+ PDF member functions set protected instead of private
  http://dev.processing.org/bugs/show_bug.cgi?id=1276

+ On OS X, update Info.plist to be 32/64 explicit and also updated 
  JavaApplicationStub for update 4.

+ Clicking the preferences location in the Preferences window will 
  now open the parent folder for the preferences file. 
  http://dev.processing.org/bugs/show_bug.cgi?id=1279

+ Update to Java 6 update 15 for the Windows and Linux releases.

[ fixed earlier ] 

+ Mangled menu text with Java 6u10.
  http://dev.processing.org/bugs/show_bug.cgi?id=1065
And
prev | 1 | ··· | 4 | 5 | 6 | 7 | 8 | 9 | 10 | ··· | 40 | next