Редактор Realaxy. Работа с XML

Posted by Den Ivanov on December 16th, 2009

35

Posted by Den Ivanov on November 23rd, 2009

35 year old! Lets party!!!

Related Entries:
  • No related posts

Processing библиотека для PS3 Eye

Posted by Den Ivanov on November 23rd, 2009

Processing библиотека для PS3 Eye

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();
}

Немного интересного видео ;)

Posted by Den Ivanov on November 12th, 2009

Few feature videos of early alpha editor from Realaxy.

AS Editor : Smart complete

AS Editor : Introduce

And more:

- GettersSetters

- Assign to field

- Enums

- Move nodes

- Naming

- Override

- Templates

Полетал на TL–2000 Sting Carbon

Posted by Den Ivanov on August 9th, 2009

Flight on TL–2000 Sting Carbon plane. from den ivanov on Vimeo.

Had a very nice flight on TL–2000 Sting Carbon plane. Very cool expierence. Will fly more soon. Thinking about learning for pilot license.

Related Entries:

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