Maya 2011 is out...

Sunday, July 11, 2010 0 comments
.. and it's beautiful. Currently I'm working in a SR-71 photo-real scene. More stuff in couple of days :)

Photobucket

Hough & RANSAC Circle Detection Project

Wednesday, May 12, 2010 0 comments
Just a spoiler. Working hard to deliver!
Matlab CV

MATLAB and Octave Functions for Computer Vision and Image Processing

Saturday, April 24, 2010 0 comments
More CV shit :)

http://www.csse.uwa.edu.au/~pk/Research/MatlabFns/ 

http://users.ecs.soton.ac.uk/msn/book/new_demo/averaging/ 

Bullet 2.76 is released! New .bullet binary file format

0 comments
http://bulletphysics.org/Bullet/phpBB3/viewtopic.php?f=18&t=4779

AAM Fitting Algorithms

0 comments
http://www.ri.cmu.edu/research_project_detail.html?project_id=448&menu_id=261

Plucking a few night notes

Tuesday, April 20, 2010 0 comments
Time of my life on piano by just.steve

Matlab Figures Demystified

0 comments
Matlab uses object oriented structures to define graphics objects. Figures, axes and UIcontrols are referred as Handle Graphics Objects. A simple hierarchy to have in mind is:
Figure>
                Axes>
                                Image, plot, scatter, line, etc
                UIobjects>
                                Menus, panels, toolbars, etc
In general to create a figure you use a handle (figure’s name that Matlab recognize) and the name of the figure (that is printed in window’s title bar).
 
fig_1 = figure('Name', ‘name-of-the-figure-1’);
You can add options, as:
fig_1 = figure('Name', ‘name-of-the-figure-1‘, 'NumberTitle', 'off', 'menubar', 'none');
You can create more than one figure:
fig_2 = figure('Name', ‘name-of-the-figure-2‘, 'NumberTitle', 'off', 'menubar', 'none');
You can select in witch figure to plot (or how to make a figure the active figure):
Figure(fig_1);
And you can clear the contents of a figure in order to plot something different inside (from an image to an animation):
clf;

More tips comming... 
 
Copyright © Synaptic Activity
Blogger Theme by BloggerThemes Sponsored by Busy Buzz Blogging