PS3 Eye Processing library

Posted by Den Ivanov on November 23rd, 2009

[lang en]PS3 Eye Processing library[/lang en][lang ru]Processing библиотека для PS3 Eye[/lang ru]

After lots of unsuccesful test with PS3 Eye camera and JMyron, i decided to wrote my own library for processing for PS3 Eye. And now after 2 days of learning and hard coding my first DLL in C++, exploring JNI i finally releasing version 0.0.1 of PS3Eye Processing Library

How to install:

1. First install Win32 drivers for PS3 Eye camera. You can get latest version from AlexP blog - http://www.alexpopovich.com/blog/2008/10/02/sony-ps3eye-camera-directshow-capture-source-filter/

2. Copy PS3EyeLib.dll from you /Program Files/AlexP/ folder to /windows/system32/ or any other folder listed in you %PATH%.

3. Extract zip to libraries folder.

Sample code:

import ru.cleoag.;
PS3Eye p;
PImage img;

int cameraWidth = 640;
int cameraHeight = 480;
int cameraRate = 60;

void setup(){
size(640,480);
p = new PS3Eye(this);
p.start(cameraWidth,cameraHeight,cameraRate);
img = createImage(cameraWidth,cameraHeight,RGB);
}

void draw(){

background(0);
p.update();
p.imageCopy(img.pixels);
img.updatePixels();
image(img,0,0,width,height);
}

void stop(){
p.stop();
}

More Augmented Reality forWinston XS

Posted by Den Ivanov on November 19th, 2009

First test video for AR Winston XS project. Still need some improvements on speed and background removal.

Few old AR projects video

Posted by Den Ivanov on November 18th, 2009

Read the rest of this entry »

Few secret videos ;)

Posted by Den Ivanov on November 12th, 2009

Few feature videos of early alpha editor from Realaxy.

Read the rest of this entry »

Multitouch project for Sony

Posted by Den Ivanov on October 7th, 2009

Multitouch project i did with multitouch.ru for Sony roadshow. In video you can see multitouch talke with notebook interaction (when we throw info panel to real notebook location, video played on his screen)


Wordpress Theme by Tech Replies
Copyright © 2007 Den Ivanov blog.. All rights reserved.