MTV 시대의 개막은 Buggles의 “비디오가 라디오 스타를 죽였다(Video Killed the Radio Star)의 뮤직비디오와 함께 시작되었다.[GatorLog관련 글]. 하지만 MTV에서는 이제 예전만큼 뮤직비디오가 울리지 않는다. 대신 MTV는 10대들이나 유명인사의 생활을 연출해서 이른바 리얼리티 TV라고 포장해서 내보내는 걸로 사업을 전환했다. 꼭 10대들만은 아니다. 이미 전설적인 헤비메탈 그룹 블랙 새버드의 오지 오스본의 가족들의 삶을 보여주는 이른바 오스본네 가족들이 힛트를 [...]

포드 캐스팅(Podcasting)이란?
미국과 유럽에서 포드캐스팅(Podcasting) 붐이 일어나고 활성화 되어 현재 한국에 까지 퍼지고 있습니다.
포드캐스팅이란 기존의 블로그를 사용해 포드캐스트 전용 rss reader 프로그램을 설치한 후 좋아하는 포드캐스트 블로그를 등록해두면 새로운 방송이 추가되었을때 자동적으로 PC에 음성파일(MP3등)을 다운로드하여 iPod(iRiver,iAudio)등의 휴대용 MP3 플레이어를 이용하여 즐기는 방법입니다.
포드 캐스팅에 의해 인터넷 라디오를 듣는 것이 편리하게 되었습니다.
지금까지는 인터넷 라디오는 스트리밍 형식에서 방송되는 것이 [...]

IOBrush

Original post by tigoe on Phys Comp Notes
11:41 am | Categorized: Art | Comments Off

IOBrush is a paintbrush that allows you to paint with video. It captures video in one mode, and paints the video back on the screen in another. It’s similar to Danny Rozin’s Easel. Unlike the easel, however, it’s possible to use the IObrush to paint with still captures or recorded video, so that its “paint” can have behaviors. There’s a good video of it in use on the site as well.

Golan Levin gives a nice introduction to computer vision in this essay, including a little history of the use of CV in art, and examples of some of the tools and problems involved. For anyone beginning to look into computer vision from a non-engineering perspective, Computer Vision for Artists and Designers: Pedagogic Tools and Techniques for Novice Programmers is a good place to start.

code that runs random values and looks terrible (but i’m pretty sure that was the point of the assignment:


float r = random(255);

void setup()
{
size(500, 500);
background(random(255), random(255), random(255));
fill(random(255), random(255), random(255));
stroke(random(255), random(255), random(255));
}

void draw()
{
if (r <= 85)
{
rect(random(500), random(500), random(500), random(500));
}
else if (r > 85 && r <= 170)
{
ellipse(random(500),random(500),random(500),random(500));
}
else if (r > 170 && r <=255)
{
triangle(random(500),random(500),random(500),random(500),random(500),random(500));
}

}

Maxbotix Ultrasonic Sensor

Original post by tigoe on Resources
10:10 am | Categorized: Elec. Supplies | Comments Off

The Maxbotix ultrasonic sensor looks like an interesting model, in that it’s smaller than most ultrasonics, and has a number of different interfaces: serial, PWM, and analog.