stl::vector

October 28, 2011 at 09:10 PM | categories: datastructures, tutorials, c++ | View Comments

A stl::vector is the equivalent in c++ to a c array. Everything that can be done with a vector can be done with a c array and viceversa[1] the only difference between them is that the vector interface is object oriented, which means that your code will be cleaner and easier to understand. I'm going to explain here some aspects of it's inner workings trying to make it clearer how to use a vector in a safe and fast way.

more >>

Depth data streaming

October 25, 2011 at 03:10 PM | categories: kinect, streaming, artandcode, openframeworks, 3d | View Comments

pointcloud

Some days ago this tweet got me intrigued. Some hours later Joel asked for help to @mrdoob since him and @marcinignac did some pointcloud visualization in the browser using mrdoob's Three.js library during OFFF 2011. I had some code for streaming using gstreamer in openFrameworks so it was just a matter of joining the pieces.

@joelgethinlewis and @roxlu were trying to make this work at Art and code 2011 which topic this year was DIY 3D sensing and visualization.

more >>

Faces. How it works.

October 25, 2011 at 01:40 PM | categories: facesubstitution, facetracking, workinprogress, openframeworks | View Comments

An idea i'm working on with Kyle McDonald

more >>