Monday, December 19, 2011

Particle Swarm Optimisation and Genetic Algorithm

"Particle Swarm Optimization (PSO) is a relatively recent heuristic search method whose
mechanics are inspired by the swarming or collaborative behavior of biological populations.
PSO is similar to the Genetic Algorithm (GA) in the sense that these two evolutionary
heuristics are population-based search methods. In other words, PSO and the GA move
from a set of points (population) to another set of points in a single iteration with likely
improvement using a combination of deterministic and probabilistic rules. The GA and its
many versions have been popular in academia and the industry mainly because of its
intuitiveness, ease of implementation, and the ability to effectively solve highly nonlinear,
mixed integer optimization problems that are typical of complex engineering systems. The
drawback of the GA is its expensive computational cost." queted from "A COMPARISON OF PARTICLE SWARM OPTIMIZATION AND THE GENETIC ALGORITHM"

_____
The pseudo code of PSO procedure is as follows

For each particle
   Initialize particle
END

Do
   For each particle
   Calculate fitness value
   If the fitness value is better than the best fitness value (pBest) in history
     set current value as the new pBest
End

Choose the particle with the best fitness value of all the particles as the gBest
For each particle
   Calculate particle velocity according equation (a)
   Update particle position according equation (b)
End
While maximum iterations or minimum error criteria is not attained
_____

Most of evolutionary techniques have the following procedure:
1. Random generation of an initial population
2. Evaluate the fitness value for each subject.
3. Reproduction of the population based on fitness values, add random solution to explore the space of solution.
4. If requirements are met, then stop. Otherwise go back to 2.
_____

Using evolutionary algorithm or PSO are nice formulation for some complex problem but visualizing the evolutionary process is fun.




You could take a look to : Yong-Hyuk Kim, Kang Hoon Lee and Yourim Yoon, Visualizing the Search Process of Particle Swarm Optimization, Proceedings of the 11th Annual conference on Genetic and evolutionary computation (GECCO 2009), 49-56, July 2009. (videos)

If you want play:
PSO: http://code.google.com/p/particle-swarm-optimization/
Genetic Algorithm: Evolving Objects (EO): an Evolutionary Computation Framework


A short but simple GDB tutorial

Quoted from Geeks3D "Here is a short tutorial about GBD for beginners. GDB is the powerful command line based debugger available with Linux. If you usually use a visual debugger like the one integrated in Visual Studio, a command line debugger like GDB can be a bit… frightening. But actually it’s quite easy to step into your code with it. Few commands are necessary to quickly start using GDB for basic debugging tasks."
Tutorial


Here it starts: > gdb your_program

Tuesday, December 13, 2011

Wednesday, November 23, 2011

DOOM3 Source code is available

"Doom 3 GPL source release
=========================

This file contains the following sections:

GENERAL NOTES
LICENSE

GENERAL NOTES
=============

Game data and patching:
-----------------------

This source release does not contain any game data, the game data is still
covered by the original EULA and must be obeyed as usual."

GitHub

Microsoft Kinect for PC

Kinect for PC will be improved for closed range application.
Microsoft have created an investment program to help some start up (Kinect Accelerator)

Source Microsoft
Kinect Accelerator

Wednesday, November 9, 2011

Monday, October 24, 2011

Monday, October 17, 2011

Marvelous designer

Marvelous designer allow to create nice and realistic clothes !    Source : 3dvf

Thursday, October 6, 2011

Rendering Synthetic Objects into Legacy Photographs

An interesting paper of SIGGRAPH ASIA 2011.
Rendering Synthetic Objects into Legacy Photographs
Kevin Karsch, Varsha Hedau, David Forsyth, Derek Hoiem
To be presented at SIGGRAPH Asia 2011

A method to realistically insert synthetic objects into existing photographs without requiring access to the scene or any additional scene measurements.
Link : http://kevinkarsch.com/publications/sa11.html

Friday, September 16, 2011

3d camera mapping.

3d camera mapping (modelling, texturing, compositing) was done with Blender 2.49


ARCHIVE PHOTO INSERTS FROM MOTALKO from Miklós Falvay on Vimeo.

Wednesday, August 31, 2011

Kinect Mocap

Ipisoft purpose solution to perform Mocap from "standard" webcam or Kinect devices.



To know more product, Kinect HowTo

Autodesk real time point cloud reconstruction with Kinect

This is the result of the Benjamin Butin student Project in the Autodesk Photofly team

Tuesday, August 23, 2011

Wind simulation from Autodesk

Autodesk are happy to announce another technology preview on Autodesk Labs.

Project Falcon for Alias software on Autodesk Labs

Project Falcon for Alias software is a wind tunnel simulator that allows designers to interactively investigate the aerodynamic performance of their designs. Flow and wind pressure results update almost in real-time in response to changes in wind-direction and speed.


Friday, August 5, 2011

Spark: Modular, Composable Shaders for Graphics Hardware

Spark: Modular, Composable Shaders for Graphics Hardware

By Tim Foley (Intel Corporation and Stanford University), Pat Hanrahan (Stanford University)


In creating complex real-time shaders, programmers should be able to decompose code into independent, localized modules of their choosing. Current real-time shading languages, however, enforce a fixed decomposition into per-pipeline-stage procedures. Program concerns at other scales - including those that cross-cut multiple pipeline stages - cannot be expressed as reusable modules.

We present a shading language, Spark, and its implementation for modern graphics hardware that improves support for separation of concerns into modules. A Spark shader class can encapsulate code that maps to more than one pipeline stage, and can be extended and composed using object-oriented inheritance. In our tests, shaders written in Spark achieve performance within 2% of HLSL.
.

Read the Siggraph paper: Spark: Modular, Composable Shaders for Graphics Hardware [PDF 3.1 MB]

Download the source code: spark-0.1.zip* [ZIP 36.3 MB];

Presented at: ACM SIGGRAPH 2011, Vancouver, B.C. Canada

Source INTEL

AMD APP KernelAnalyzer 1.9 (OpenCL)


"AMD has published an update of its tool for OpenCL developers. AMD’s APP KernelAnalyzer is a tool to compile, analyze and disassemble OpenCL, Brook+ or IL (Intermediate Language) kernels for Radeon GPUs. APP SDK v2.5 or greater is required for OpenCL support and ATI Stream 1.4 for Brook+.


AMD APP KernelAnalyzer main features
Compile, analyze and disassemble the OpenCL kernel for multiple Catalyst driver versions and GPU device targets.
View any kernel compilation errors and warnings generated by the OpenCL runtime.
View the AMD Intermediate Language (IL) code generated by the OpenCL run-time.
View the ISA code generated by the AMD Shader Compiler.
View various statistics generated by analyzing the ISA code.
View General Purpose Registers and spill registers allocated for the kernel.



Official page and download: APP KernelAnalyzer @ AMD."

Source Geeks3D

Mathematical Music



Source Geeks3D

Wednesday, August 3, 2011

Wednesday, July 20, 2011

Wednesday, June 29, 2011

Many faces to create new ones

AKB48 is a japonese Idol group. They have made a buzz about a new member of the group... But this new member was entirely made from face of the existing member !

Here the synthetized face :


Ok it's look almost planar... but it give a nice result.

Here the Making Of :


If you want make your own Idol :
http://www.icenomi.com/oshimen/index.html

Source : 3DVF Icenomi

Wednesday, June 22, 2011

Computer Vision help food analysis

Two side 3D analysis :



Optimal chicken cut :

Monday, June 20, 2011

Nice ring juggling

 Nice to see :



Source : Geeks3D

Friday, June 17, 2011

Official Microsoft Kinect SDK is out

"The Kinect for Windows SDK beta is a starter kit for applications developers that includes APIs, sample code, and drivers. This SDK enables the academic research and enthusiast communities to create rich experiences by using Microsoft Xbox 360 Kinect sensor technology on computers running Windows 7."

Source : Microsoft

They have put focus on skeletal recognition and tracking. As sample you will have a game... and more


Official samples:

"Skeletal Viewer—Capturing Data with the NUI API (C++ and C#)
The Kinect sensor includes two cameras: one delivers depth information and the other delivers color data. The NUI API enables applications to access and manipulate this data. The SkeletalViewer sample uses the NUI API to render data from the Kinect sensor’s cameras as images on the screen. The managed sample uses WPF to render captured images, and the native application uses DirectX.

ShapeGame—Creating a Game with Audio and Skeletal Tracking
Displays the tracked skeletons of two players together with shapes falling from the sky. Players can control the shapes by moving and speaking commands.

Audio Capture Raw (C++)
The Kinect sensor’s audio component is a four-element microphone array. The AudioCaptureRaw sample uses the Windows Audio Session API (WASAPI) to capture the raw audio stream from the Kinect sensor’s microphone array and write it to a .wav file.

MicArrayEchoCancellation—Acoustic Echo Cancellation, Beam Forming, and Source Localization (C++)
The primary way for C++ applications to access the Kinect sensor’s microphone array is through the MSRKinectAudio DirectX Media Object (DMO). The MSRKinectAudio DMO supports all standard microphone array functionality, and adds support for beamforming and source localization. The MicArrayEchoCancellation sample shows how to use the KinectAudio DMO as a DirectShow® source to access the Kinect sensor’s microphone array. This sample uses acoustic echo cancellation to record a high-quality audio stream and beamforming and source localization to determine the selected beam and the direction of the sound source.

MFAudioFilter—Media Foundation Audio Filter (C++)
Shows how to capture an audio stream from the Kinect sensor’s microphone array by using the MSRKinectAudio DMO in filter mode in a Windows Media Foundation topology.

RecordAudio—Recording an Audio Stream and Monitoring Direction (C#)
Demonstrates how to capture an audio stream from the Kinect sensor’s microphone array and monitor the currently selected beam and sound source direction.

Speech—Recognizing Voice Commands (C#)
Demonstrates how to use the Kinect sensor’s microphone array with the Microsoft.Speech API to recognize voice commands."


An example made by a user.

Thursday, June 16, 2011

Google Search by image

Google launch a service to perform web image search by similarity. It's a service like http://www.tineye.com/.

http://images.google.com/ A camera have appear in the text label. Drag and Drop an image on the text field or click on the camera.
 

Wednesday, June 15, 2011

AMD gDEBugger, an advanced OpenGL and OpenCL debugger

AMD have released an integrated debugger for OpenGL and OpenCL to Visual Studio.



AMD gDEBugger is an advanced OpenGL and OpenCL debugger, profiler and memory analyzer. Actually AMD gDEBugger is based on the well known gDEBugger by Graphic Remedy. This new debugger is a plugin for Visual Studio and supports all capabilities of the original gDEBugger as well as new features.

 "gDEBugger takes the mystery out of debugging OpenCL and OpenGL, allowing developers to peer into computer and graphic memory objects such as OpenCL images to view their contents as they change from write, copy, and kernel operations. Allocated OpenCL and OpenGL objects are monitored to allow detecting memory leaks and the scenarios that caused the leaking objects to be created, API function call logs can be viewed and saved and unrecommended and deprecated functions and behaviors are marked, with best-practice alternatives offered. "

AMD gDEBugger download should be available shortly.

More information on the official homepage: AMD gDEBugger @ AMD.
Source : Geeks3D

Monday, June 13, 2011

What's new in Computer Vision System Toolbox in R2011a

Matlab have updated is Computer Vision System Toolbox.
Here's the documentation.

Here’s a list of what’s new:
  • extractFeatures function for creating an array of feature vectors (descriptors) based on interest points within an image
  • matchFeatures function for finding the best matches between two arrays of feature vectors (descriptors)
  • Visualization of epipolar geometry for stereo images using epipolarLine, isEpipoleInImage, and lineToBorderPoints functions

  • estimateUncalibratedRectification function for calculating projective transformations to rectify stereo images
  • Video segmentation based on Gaussian Mixture Models using ForegroundDetector System object YCbCr video format support for ToVideoDisplay block and DeployableVideoPlayer System object
Calling this product a toolbox also allows us to clarify and highlight the MATLAB capabilities in the product that we’ve had since R2010a. Some of these algorithms overlap with Image Processing Toolbox, but provide support for C code generation and fixed-point modeling. Others are unique to Computer Vision System Toolbox, including these:

  • vision.BlockMatcher
  • vision.Deinterlacer
  • vision.GeometricTransformEstimator
  • vision.OpticalFlow
  • vision.TemplateMatcher
Source : Steve Blog

Matlab Visual Sudoku Solver

After the Google Goggles Sudoku Demo Matlab have released near the same demo.
Not purely real time. But a working one with explanation. (Basis bricks are a sudoku solver, some image processing (morphological operations) and number recognition).

http://www.mathworks.com/videos/matlab/sudoku.html



The source code is accessible on the same webpage.

Thursday, June 9, 2011

Kinect Graffiti

A nice initiative to make Temporary art !

Kinect Graffiti™ from Jean-Christophe Naour on Vimeo.

Thanks to Dlpnet.

Monday, May 30, 2011

SVG GIRL

An incredible SVG demo :
http://jsdo.it/event/svggirl



You could edit SVG slides an reload the animation.

Friday, May 27, 2011

New AR game from Dassault System

Following the last Rio game. Dassault System will release the King Fu Panda 2 game.

Here the preview :


Source 3DVF

Thursday, May 26, 2011

Hello Read/Write World!

The Read/Write the world project have innovative ideas :

Quoted from http://readwriteworld.cloudapp.net/?p=35

"Today we’re unveiling a major new project in Bing. Technically it’s an indexing, unification, and connection of the world’s geo-linked media. Informally, it’s the magic of:
  • Seeing your photos automatically connected to others;
  • Being able to simply create immersive experiences from your or your friends photos, videos, and panoramas;
  • “Fixing” the world, when the official imagery of your street is out of date;
  • Visually mapping your business, your favorite park, or your real estate for everyone to see;
  • Understanding the emergent information from the density and tagging of media.
The Read/Write World has 3 pillars: Clear Content Rights; Uniform Access and Open Source Viewers; and Real-Time Geo-Services."
Swimming through the Read/Write World from Read/Write World on Vimeo.

 Another interesting talk :
 

 

Wednesday, May 25, 2011

123d A free Nurbs Autodesk 3D modeler

123D is a public beta software from Autodesk that allow you to perform Nurbs based modeling.


TO know more and see video : http://www.123dapp.com/support

I seems have function dedicated for 3D printing :

Monday, May 23, 2011

Sony "smartAR"

New video about "smartAR" the Augmented Reality work in progress of Sony



Wednesday, May 18, 2011

SIGGRAPH 2011 Technical Papers Video Preview

The technical Papers video preview of SIGGRAPH 2011 :



Interesting or fun ->
Microgeometry from an elastomeric sensor
Exploring photobios
Passive Facial capture
Garment modeling

Wednesday, May 11, 2011

From tiny to large Icons

This siggraph 2011 paper "describe a novel algorithm for extracting a resolution-independent vector representation from pixel art images, which enables magnifying the results by an arbitrary amount without image degradation."

To know more : Here

I'm curious to see the result on large images.

One more paper from Johannes Kopf (Microsoft)

Digital Micrography

This siggraph 2011 paper show how digitize a image into a text field:


To know more : Here

Intel OpenCL 1.1 SDK (beta version)

From ozone3d.net.

"Intel has published a new version of its OpenCL SDK. This new SDK, targeting Intel CPUs, supports the OpenCL 1.1 specification and brings a preview support for Linux (64-bit only).

Intel OpenCL SDK version 1.1 new features:
SDK is fully conformant with OpenCL 1.1 specification for the CPU
Beta support for Microsoft* Windows* operating systems (32 and 64 bit)
Preview support for Linux* operating systems
OpenCL Installable Client Driver (ICD) Compliant
Unique Implicit CPU Vectorization Module for best utilization of the CPU hardware vector units (SIMD) across work items
Optional OpenCL 1.1 Core Features: Out-of-order execution model, Execution of native kernels, Image support and Optimization options through OpenCL complier flags (cl-fast-relaxed-math)
Double precision floating point extension (cl_khr_fp64)
OpenGL*/OpenCL Sharing (cl_khr_gl_sharing)
Preview: Device Fission Extension Support (cl_ext_device_fission)
Code samples
Debug and Analyze with the Intel OpenCL SDK Tools: Debug kernels using printf (cl_intel_printf), Intel OpenCL SDK Offline Complier and Code
Analyzer, Intel Graphics Performance Analyzers support, OpenCL kernel analyzing using Intel VTune Amplifier XE 2011 Integration

Detailed release notes are available HERE."

Monday, May 9, 2011

Kinect facial capture



Quoted from Youtube
"
This video shows an example of how 3D facial motion performance can be captured without markers using a Microsoft Kinect camera (data shown in green). The resulting facial animation is shown in purple. The color video is just shown for reference and not used in the process.

This is work by M. Breidthttp://www.kyb.tuebingen.mpg.de/nc/employee/details/mbreidt.html , H. H. Bülthoff and C. Curiohttp://www.kyb.tuebingen.mpg.de/research/dep/bu/ce.html at the department for Human Perception, Action and Cognition of the Max Planck Institute for Biological Cybernetics, Tübingen, Germanyhttp://www.kyb.tuebingen.mpg.de/?id=43

Thanks to Joachim Tesch and Johannes Lächele for their help in recording raw data from the Kinect!"

Tuesday, May 3, 2011

41 GigaPixels panorama

Here a panorama of 41 Gigapixel of the french city Saint Raphael.


The making of

PS : It's not perfect (there is some ghost from the blending step):




PS : 111 GigaPixel Sevilla

Monday, May 2, 2011

Panasonic VIERA AR Setup Simulator

Let see what a TV could render in your room.

It's Augmented Reality and they use marker.





Only limited to Iphones....

It's cool that they show the case that do not work. (Pattern is not detected in those condition)

Wednesday, April 20, 2011

Real Time Spherical panorama on Iphone

"Today, we're introducing the official Photosynth app which lets you capture amazing panoramas of your favorite places to share with your friends and even the world with Bing Maps. (The app is currently available via iTunes and will be available on iOS devices later today.) Photosynth’s interactive panoramas allow you to look left, right, up and down, letting you capture and view more of the places you visit.

Using the latest computer vision technology, the Photosynth app makes capturing panoramas fun and engaging, while creating sharp, high-resolution results. With the app, you can process, view, and store your panoramas directly on your device. Then, share them in a variety of ways, including to Facebook as images or as interactive panoramas (hosted for free) on Photosynth.net.
"

<br /> <br /> <a href="http://www.bing.com/community/site_blogs/b/search/archive/2011/04/18/capture-panoramas-anywhere-you-go-with-the-photosynth-app-and-share-on-bing.aspx">http://www.bing.com/community/site_blogs/b/search/archive/2011/04/18/capture-panoramas-anywhere-you-go-with-the-photosynth-app-and-share-on-bing.aspx</a> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/real-time-spherical-panorama-on-iphone.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/real-time-spherical-panorama-on-iphone.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-20T09:10:00+02:00'>9:10&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/real-time-spherical-panorama-on-iphone.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=6493245188170405804' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=6493245188170405804&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Computer%20Graphics' rel='tag'>Computer Graphics</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/computer%20vision' rel='tag'>computer vision</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/iphone' rel='tag'>iphone</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Panoramic%20images' rel='tag'>Panoramic images</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/photosynth' rel='tag'>photosynth</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Thursday, April 14, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='1598499531308871618' itemprop='postId'/> <a name='1598499531308871618'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-pose-recognition-details.html'>Kinect pose recognition Details !</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-1598499531308871618' itemprop='description articleBody'> Here some details about the tech used to recognize the pose of the players with Kinect !<br /> <br /> The CVPR paper : <a href="http://research.microsoft.com/pubs/145347/BodyPartRecognition.pdf">http://research.microsoft.com/pubs/145347/BodyPartRecognition.pdf</a><br /> <br /> Here a video and some details : <a href="http://www.istartedsomething.com/20110319/microsoft-research-reveals-guts-of-kinect-technology/">http://www.istartedsomething.com/20110319/microsoft-research-reveals-guts-of-kinect-technology/</a> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/kinect-pose-recognition-details.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-pose-recognition-details.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-14T10:11:00+02:00'>10:11&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-pose-recognition-details.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=1598499531308871618' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=1598499531308871618&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Kinect' rel='tag'>Kinect</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/tech%20paper' rel='tag'>tech paper</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='http://2.bp.blogspot.com/-BTAEYLWABwc/Taapslh_iVI/AAAAAAAAAKA/8Vybezv0ZtM/s640/KinectSDK.JPG' itemprop='image_url'/> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='6776533800777967370' itemprop='postId'/> <a name='6776533800777967370'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-official-sdk-official-website.html'>Kinect Official SDK ... official website</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-6776533800777967370' itemprop='description articleBody'> <a href="http://research.microsoft.com/en-us/um/redmond/projects/kinectsdk/">http://research.microsoft.com/en-us/um/redmond/projects/kinectsdk/</a><br /> <br /> <div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-BTAEYLWABwc/Taapslh_iVI/AAAAAAAAAKA/8Vybezv0ZtM/s1600/KinectSDK.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="179" src="http://2.bp.blogspot.com/-BTAEYLWABwc/Taapslh_iVI/AAAAAAAAAKA/8Vybezv0ZtM/s640/KinectSDK.JPG" width="640" /></a></div><br /> The SDK will be available for VB, C# et C++. It will cover all the hardware of the Kinect (color camera, depth, micro network, echo suppresion, acoustic localization, skeletal animation). <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/kinect-official-sdk-official-website.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-official-sdk-official-website.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-14T10:01:00+02:00'>10:01&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-official-sdk-official-website.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=6776533800777967370' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=6776533800777967370&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Kinect' rel='tag'>Kinect</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='2847110610507509681' itemprop='postId'/> <a name='2847110610507509681'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/virtual-visite.html'>Virtual visite</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-2847110610507509681' itemprop='description articleBody'> Here a French initiative to make a virtual visit of local cultural inheritance.<br /> <br /> <iframe src="http://player.vimeo.com/video/19653470" width="400" height="225" frameborder="0"></iframe><p><a href="http://vimeo.com/19653470">Présentation circuit touristique avec réalité augmentée</a> from <a href="http://vimeo.com/user4490212">Dominomenuvideo</a> on <a href="http://vimeo.com">Vimeo</a>.</p><br /> Source <a href="http://www.3dvf.com/actualite-614-circuit-touristique-en-realite-augmentee-domino-studios-et-int13.html">3Dvf.com</a> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/virtual-visite.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/virtual-visite.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-14T09:54:00+02:00'>9:54&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/virtual-visite.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=2847110610507509681' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=2847110610507509681&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Computer%20Graphics' rel='tag'>Computer Graphics</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/computer%20vision' rel='tag'>computer vision</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Monday, April 11, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='8251983691211426064' itemprop='postId'/> <a name='8251983691211426064'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/car-ads-projected.html'>Car Ads Projected</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-8251983691211426064' itemprop='description articleBody'> <object height="390" width="640"><param name="movie" value="http://www.youtube.com/v/tu0TRA6a21Q&hl=en_US&feature=player_embedded&version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/tu0TRA6a21Q&hl=en_US&feature=player_embedded&version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></embed></object> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/car-ads-projected.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/car-ads-projected.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-11T09:23:00+02:00'>9:23&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/car-ads-projected.html#comment-form' onclick=''> 1 comment: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=8251983691211426064' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=8251983691211426064&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='84009925140578262' itemprop='postId'/> <a name='84009925140578262'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/3d-clip-again.html'>3D clip again</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-84009925140578262' itemprop='description articleBody'> <iframe src="http://player.vimeo.com/video/20465943?color=33ffff" width="400" height="225" frameborder="0"></iframe><p><a href="http://vimeo.com/20465943">Krause Follow Me</a> from <a href="http://vimeo.com/optix">OPTIX Digital Pictures</a> on <a href="http://vimeo.com">Vimeo</a>.</p><br /> Source : <a href="http://www.optixdigital.de/followme/">http://www.optixdigital.de/followme/</a> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/3d-clip-again.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/3d-clip-again.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-11T09:11:00+02:00'>9:11&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/3d-clip-again.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=84009925140578262' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=84009925140578262&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Computer%20Graphics' rel='tag'>Computer Graphics</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/computer%20vision' rel='tag'>computer vision</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Friday, April 8, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='7300640088980342570' itemprop='postId'/> <a name='7300640088980342570'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-and-windows-7.html'>Kinect and windows 7</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-7300640088980342570' itemprop='description articleBody'> Evoluce <br /> <br /> <object style="height: 390px; width: 640px"><param name="movie" value="http://www.youtube.com/v/o4U1pzVf9hY?version=3"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/o4U1pzVf9hY?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/kinect-and-windows-7.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-and-windows-7.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-08T20:49:00+02:00'>8:49&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-and-windows-7.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=7300640088980342570' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=7300640088980342570&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Kinect' rel='tag'>Kinect</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='2377276145954698854' itemprop='postId'/> <a name='2377276145954698854'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-fun-in-barcelona.html'>Kinect fun in Barcelona</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-2377276145954698854' itemprop='description articleBody'> <iframe src="http://player.vimeo.com/video/21676294" width="400" height="225" frameborder="0"></iframe><p><a href="http://vimeo.com/21676294">Be Your Own Souvenir!</a> from <a href="http://vimeo.com/user1363263">blablabLAB</a> on <a href="http://vimeo.com">Vimeo</a>.</p> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/kinect-fun-in-barcelona.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-fun-in-barcelona.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-08T20:44:00+02:00'>8:44&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-fun-in-barcelona.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=2377276145954698854' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=2377276145954698854&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='7691058230671652898' itemprop='postId'/> <a name='7691058230671652898'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/360-pano-mirror-for-iphone.html'>360&#176; pano mirror for Iphone</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-7691058230671652898' itemprop='description articleBody'> <object style="height: 390px; width: 640px"><param name="movie" value="http://www.youtube.com/v/9o8AAOtOiPQ?version=3"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/9o8AAOtOiPQ?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object><br /> <br /> The obvious default is that all the 360&#176; pano is limited to the resolution of the sensor size. <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/360-pano-mirror-for-iphone.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/360-pano-mirror-for-iphone.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-08T20:41:00+02:00'>8:41&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/360-pano-mirror-for-iphone.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=7691058230671652898' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=7691058230671652898&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='9129853832586635680' itemprop='postId'/> <a name='9129853832586635680'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/what-will-be-new-in-unreal-engine-3.html'>What will be new in Unreal Engine 3</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-9129853832586635680' itemprop='description articleBody'> <object height="390" width="640"><param name="movie" value="http://www.youtube.com/v/CtGYtdDI6eE&hl=en_US&feature=player_embedded&version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/CtGYtdDI6eE&hl=en_US&feature=player_embedded&version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></embed></object> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/what-will-be-new-in-unreal-engine-3.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/what-will-be-new-in-unreal-engine-3.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-08T09:26:00+02:00'>9:26&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/what-will-be-new-in-unreal-engine-3.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=9129853832586635680' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=9129853832586635680&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Computer%20Graphics' rel='tag'>Computer Graphics</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Tuesday, April 5, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='192109764075983418' itemprop='postId'/> <a name='192109764075983418'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/04/programmer-level-matrix.html'>Programmer level matrix ?</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-192109764075983418' itemprop='description articleBody'> <a href="http://www.indiangeek.net/wp-content/uploads/Programmer%20competency%20matrix.htm">http://www.indiangeek.net/wp-content/uploads/Programmer%20competency%20matrix.htm</a><br /> <br /> It shows skills per level and it's not bad !<br /> <br /> I.E.:<br /> <br /> <table> <tr><th colspan="5">Computer Science</th></tr> <tr class="headers"><td>&nbsp;</td><td>2<sup>n</sup> <span class="explain">(Level 0)</span></td><td>n<sup>2</sup> <span class="explain">(Level 1)</span></td><td>n <span class="explain">(Level 2)</span></td><td>log(n) <span class="explain">(Level 3)</span></td></tr> <tr class="q"><td>data structures</td><td>Doesn't know the difference between Array and LinkedList </td><td>Able to explain and use Arrays, LinkedLists, Dictionaries etc in practical programming tasks </td><td>Knows space and time tradeoffs of the basic data structures, Arrays vs LinkedLists, Able to explain how hashtables can be implemented and can handle collisions, Priority queues and ways to implement them etc. </td><td>Knowledge of advanced data structures like B-trees, binomial and fibonacci heaps, AVL/Red Black trees, Splay Trees, Skip Lists, tries etc.</td><td></td></tr> </table> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/04/programmer-level-matrix.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/04/programmer-level-matrix.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-04-05T11:55:00+02:00'>11:55&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/04/programmer-level-matrix.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=192109764075983418' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=192109764075983418&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Tuesday, March 29, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='3603111274052949235' itemprop='postId'/> <a name='3603111274052949235'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/quadrocopter-ball-juggling.html'>Quadrocopter Ball Juggling</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-3603111274052949235' itemprop='description articleBody'> Again Quadrocopter assisted with motion capture : Performing juggling<br /> <br /> <object style="height: 390px; width: 640px;"><param name="movie" value="http://www.youtube.com/v/3CR5y8qZf0Y?version=3"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/3CR5y8qZf0Y?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/quadrocopter-ball-juggling.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/quadrocopter-ball-juggling.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-29T16:54:00+02:00'>4:54&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/quadrocopter-ball-juggling.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=3603111274052949235' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=3603111274052949235&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='http://www.festo.com/rep/en_corp/assets/_MG_6874_240px.jpg' itemprop='image_url'/> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='2987314455102055093' itemprop='postId'/> <a name='2987314455102055093'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/ornithoptere.html'>Ornithoptère</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-2987314455102055093' itemprop='description articleBody'> <div class="separator" style="clear: both; text-align: center;"><a href="http://www.festo.com/rep/en_corp/assets/_MG_6874_240px.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://www.festo.com/rep/en_corp/assets/_MG_6874_240px.jpg" /></a></div><br /> <object style="height: 390px; width: 640px;"><param name="movie" value="http://www.youtube.com/v/nnR8fDW3Ilo?version=3"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/nnR8fDW3Ilo?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object><br /> <br /> <object style="height: 390px; width: 640px;"><param name="movie" value="http://www.youtube.com/v/9fbmWQ3ExEs?version=3"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/9fbmWQ3ExEs?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object><br /> <br /> So good !<br /> <br /> Source : <a href="http://www.festo.com/cms/en_corp/11369.htm">Festo</a> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/ornithoptere.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/ornithoptere.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-29T16:53:00+02:00'>4:53&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/ornithoptere.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=2987314455102055093' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=2987314455102055093&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='7973166285087265889' itemprop='postId'/> <a name='7973166285087265889'></a> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-7973166285087265889' itemprop='description articleBody'> <span class="Apple-style-span" style="color: #333333; font-family: Arial, Helvetica, Georgia, sans-serif; font-size: 16px; font-weight: bold; line-height: 27px;"><a href="http://blog.t-immersion.com/2011/03/24/total-immersion-receives-usd-55m-in-funding-led-by-intel-capital/" rel="bookmark" style="border-bottom-color: rgb(117, 171, 234); border-bottom-style: solid; border-bottom-width: 1px; color: #105cb6; text-decoration: none;" title="Total Immersion Receives USD $5,5M in Funding Led by Intel&#160;Capital">Total Immersion Receives USD $5,5M in Funding Led by Intel&nbsp;Capital</a></span><br /> <div class="postinfo" style="clear: both; color: #999999; font-family: Arial, Helvetica, Georgia, sans-serif; font-size: 11px; line-height: 18px;">Posted on&nbsp;<span class="postdate" style="color: #a12a2a;">March 24, 2011</span>&nbsp;by Total Immersion</div><div class="entry" style="color: #333333; font-family: Arial, Helvetica, Georgia, sans-serif; font-size: 12px; line-height: 18px; max-width: 475px; text-align: left; vertical-align: top;"><div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;">Press Release :&nbsp; Total Immersion, global leader in augmented reality, announced today that it has secured USD $5,5M in a funding round led by Intel Capital joined by existing investors Partech, iSource and Elaia Partners. The new funding will be used towards further development of the D&#8217;Fusion platform and to drive new usage of augmented reality (AR) for end-users. Specifically, the team will be focusing on expanding operations in Asia and in the US, developing a large community of developers and exploring new consumer markets.</div><div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;">&#8220;Augmented reality is one of the key technologies enabling contextual computing on the mobile phone, tablets and PC through interactive experience for exploration, suggestion and direction. At Total Immersion, we&#8217;re constantly looking for developing usage of augmented reality experiences for our customers and for end-users and this investment is another big step towards that objective,&#8221; said Bruno Uzzan, CEO and co-founder of Total Immersion.</div><div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;">&#8220;Total Immersion provides a unique and immersive user experience,&#8221; said Christian Morales, General Manager, Europe, Middle East, Africa of Intel Corporation. &#8220;Augmented reality is changing the way how people perceive and interact with their environment. It offers new opportunities for both developers and users. We look forward to working with Total Immersion to develop new usage experiences for Intel platforms&#8221;</div><div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;">&#8220;Augmented reality is a disruptive technology blending real life with digital information which will enable new and exciting businesses&#8221; said Marcos Battisti, Intel Capital&#8217;s Managing Director for Western Europe and Israel. &#8220;Total Immersion is bringing this ground breaking new technology into everyday life and our investment will enable the company to accelerate its growth and adoption. We are truly excited by Total Immersion&#8217;s capabilities and their contribution to future evolutions in this field.&#8221;</div><div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;"><br /> </div><br /> <div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;">Source :&nbsp;<a href="http://blog.t-immersion.com/2011/03/24/total-immersion-receives-usd-55m-in-funding-led-by-intel-capital/">http://blog.t-immersion.com/2011/03/24/total-immersion-receives-usd-55m-in-funding-led-by-intel-capital/</a></div><div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;"><br /> </div></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/total-immersion-receives-usd-55m-in.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/total-immersion-receives-usd-55m-in.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-29T09:05:00+02:00'>9:05&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/total-immersion-receives-usd-55m-in.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=7973166285087265889' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=7973166285087265889&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='http://www.batterypoweredgames.com/sites/default/files/images/batterytech_top_to_bottom_0.preview.jpg' itemprop='image_url'/> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='2179282455336903753' itemprop='postId'/> <a name='2179282455336903753'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/batterytech-high-performance-mobile.html'>BatteryTech - high-performance mobile platform abstraction framework</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-2179282455336903753' itemprop='description articleBody'> <div style="color: #454545; font-family: 'Trebuchet MS', Arial, Tahoma, sans-serif; font-size: 14px; line-height: 19px; margin-bottom: 1.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.6em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;">BatteryTech&#8482; is a high-performance mobile platform abstraction framework. Boiled down, it is a way for you to write native C++ code for Android&#8482; and iPhone&#174; while developing on a Mac&#174; or in Windows&#174;.</div><div style="color: #454545; font-family: 'Trebuchet MS', Arial, Tahoma, sans-serif; font-size: 14px; line-height: 19px; margin-bottom: 1.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.6em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><strong>BatteryTech allows you to:</strong></div><ul style="color: #454545; font-family: 'Trebuchet MS', Arial, Tahoma, sans-serif; font-size: 13px; line-height: 19px; margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0.5em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Deploy on both Android&#8482; and iPhone&#174; with very little extra time invested</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Skip having to mess around with clunky platform APIs</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Have the highest-performing code possible</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Build your own custom game engine using libraries like Chipmunk Physics, Box2D, Bullet, Lua and others</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Develop more in less time by testing most builds on a fast PC or Mac</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Port existing titles only once to get multiple platform support</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Develop multiplayer games that work across all platforms (iPhone vs Android in real-time)</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Enjoy native coding without the worry about getting it to work on another platform</li> </ul><div class="separator" style="clear: both; text-align: center;"><a href="http://www.batterypoweredgames.com/sites/default/files/images/batterytech_top_to_bottom_0.preview.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="240" src="http://www.batterypoweredgames.com/sites/default/files/images/batterytech_top_to_bottom_0.preview.jpg" width="320" /></a></div><div><span class="Apple-style-span" style="color: #454545; font-family: 'Trebuchet MS', Arial, Tahoma, sans-serif; font-size: small;"><span class="Apple-style-span" style="font-size: 13px; line-height: 19px;"><div style="font-size: 14px; margin-bottom: 1.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.6em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><strong>Features</strong></div><ul style="margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0.5em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">OpenGL ES 1.0, 1.1 and 2.0 (Shader) support</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Lightweight, High-performance Audio Mixer</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Lightweight GLES UI Library</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">OGG, PNG, JPG, GIF and TTF decoding</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Asset-based File IO</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Standard Networking</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Cross-platform demo app using Box2D with projects for every OS</li> </ul><div style="font-size: 14px; margin-bottom: 1.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.6em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><strong>Supported Targets</strong></div><ul style="margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0.5em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Windows native</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">OSX native</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">iPhone/iPod Touch 2nd gen+</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">iPad / iPad 2</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Nearly all Android phones and tablets (1.5+)</li> </ul><div style="font-size: 14px; margin-bottom: 1.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.6em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><strong>Supported IDEs</strong></div><ul style="margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0.5em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Eclipse CDT (Win32 / Android NDK)</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Eclipse ADT (Android / NDK)</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Xcode (iOS / OSX)</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Visual Studio 2010 (Win32)</li> </ul><div style="font-size: 14px; margin-bottom: 1.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.6em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><strong>What's in the demo:</strong></div><ul style="margin-bottom: 1em; margin-left: 0px; margin-right: 0px; margin-top: 0.5em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"><li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">A basic game framework using GameObject creation and management</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Menus, sounds and music examples</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Box2D integration</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Support for both Fixed-Function and Shader rendering depending on device</li> <li style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: url(http://www.batterypoweredgames.com/sites/all/themes/bpg/images/menu-leaf.png); background-origin: initial; background-position: 1px 0.35em; background-repeat: no-repeat no-repeat; list-style-image: none; list-style-type: none; margin-bottom: 0.15em; margin-left: 0.5em; margin-right: 0px; margin-top: 0.15em; padding-bottom: 0.2em; padding-left: 1.5em; padding-right: 0px; padding-top: 0px;">Examples of loading, changing and saving settings to file in a game</li> </ul></span></span></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/batterytech-high-performance-mobile.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/batterytech-high-performance-mobile.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-29T09:02:00+02:00'>9:02&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/batterytech-high-performance-mobile.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=2179282455336903753' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=2179282455336903753&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Computer%20Graphics' rel='tag'>Computer Graphics</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='2400868285671807959' itemprop='postId'/> <a name='2400868285671807959'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/amd-opencl-emu-documentation.html'>AMD OpenCL Emu Documentation</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-2400868285671807959' itemprop='description articleBody'> <div class="quoteheader" style="color: #666666; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; font-weight: bold; line-height: 17px; padding-bottom: 0px; padding-left: 0.3em; padding-right: 0.3em; padding-top: 0px;"><div class="topslice_quote">Quote</div></div><blockquote class="bbc_standard_quote" style="background-attachment: initial; background-clip: initial; background-color: #d7daec; background-image: url(http://www.geeks3d.com/forums/Themes/default/images/theme/quote.png); background-origin: initial; background-position: 0.1em 0.1em; background-repeat: no-repeat no-repeat; border-bottom-color: rgb(153, 153, 170); border-bottom-style: solid; border-bottom-width: 2px; border-top-color: rgb(153, 153, 170); border-top-style: solid; border-top-width: 2px; color: black; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; line-height: 1.4em; margin-bottom: 0.3em; margin-left: 0px; margin-right: 0px; margin-top: 0.1em; overflow-x: auto; overflow-y: auto; padding-bottom: 1.1em; padding-left: 1.4em; padding-right: 1.4em; padding-top: 1.1em;"><a class="bbc_link" href="http://developer.amd.com/zones/opensource/assets/OpenCL%20Emu%20Documentation%20(2).pdf" style="border-bottom-color: rgb(168, 182, 207); border-bottom-style: solid; border-bottom-width: 1px; color: #334466; text-decoration: none;" target="_blank">OpenCL Emu</a>&nbsp;is a set of effective tools for the OpenCL software development designed for AMD GPUs<br /> without the explicit need of GPU hardware. It allows developing and debugging an OpenCL kernel as a<br /> C++ procedure inside your MS Visual Studio application while providing an easy switch between CPU,<br /> GPU or GPU-emulator at the backend.<br /> <br /> This tool would enable programmers to start developing using OpenCL language instantly without having<br /> to learn the intricacies of the OpenCL run-time, saving them time to concentrate more on developing<br /> parallel algorithms and making the shift to OpenCL a step easier.</blockquote><br /> Source :&nbsp;<a href="http://www.geeks3d.com/forums/index.php/topic,2065.0.html">http://www.geeks3d.com/forums/index.php/topic,2065.0.html</a> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/amd-opencl-emu-documentation.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/amd-opencl-emu-documentation.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-29T08:59:00+02:00'>8:59&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/amd-opencl-emu-documentation.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=2400868285671807959' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=2400868285671807959&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/GPGPU' rel='tag'>GPGPU</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Opencl' rel='tag'>Opencl</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/tech%20paper' rel='tag'>tech paper</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='http://4.bp.blogspot.com/-kPl4u6EFz9c/TZGCVOvD2EI/AAAAAAAAAJ8/W6oOlYqUu6s/s400/Katamari.JPG' itemprop='image_url'/> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='4194679164011776795' itemprop='postId'/> <a name='4194679164011776795'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/katamari-in-your-browser.html'>Katamari in your Browser</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-4194679164011776795' itemprop='description articleBody'> Do not hesitate to test this Katamari Hack :<br /> <a href="http://www.kathack.com/">http://www.kathack.com/</a><br /> <br /> <div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-kPl4u6EFz9c/TZGCVOvD2EI/AAAAAAAAAJ8/W6oOlYqUu6s/s1600/Katamari.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="307" src="http://4.bp.blogspot.com/-kPl4u6EFz9c/TZGCVOvD2EI/AAAAAAAAAJ8/W6oOlYqUu6s/s400/Katamari.JPG" width="400" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /> </div><div class="separator" style="clear: both; text-align: center;">Have Fun !</div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/katamari-in-your-browser.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/katamari-in-your-browser.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-29T08:55:00+02:00'>8:55&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/katamari-in-your-browser.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=4194679164011776795' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=4194679164011776795&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Monday, March 28, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='6022974713872112713' itemprop='postId'/> <a name='6022974713872112713'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/crysis-2-cryengine-3-key-rendering.html'>Crysis 2 & CryENGINE 3 Key Rendering Features</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-6022974713872112713' itemprop='description articleBody'> <a href="http://crytek.com/sites/default/files/Crysis%202%20Key%20Rendering%20Features.pdf">Here </a>an article about the Key rendering Features of&nbsp;Crysis 2 &amp; CryENGINE 3.<br /> <br /> I think they have made a very bad choice for the comparison.... of each key features... They always show in game&nbsp;screenshot&nbsp;and difference are often very hard to see. It's better to choose synthetic scene to show clearly the typical difference.<br /> <br /> Source : <a href="http://crytek.com/">Crytek</a>. <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/crysis-2-cryengine-3-key-rendering.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/crysis-2-cryengine-3-key-rendering.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-28T08:35:00+02:00'>8:35&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/crysis-2-cryengine-3-key-rendering.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=6022974713872112713' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=6022974713872112713&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/tech%20paper' rel='tag'>tech paper</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Wednesday, March 23, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='8840195638245909193' itemprop='postId'/> <a name='8840195638245909193'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/homemade-touch-screen.html'>Homemade Touch screen</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-8840195638245909193' itemprop='description articleBody'> With a few of electronics and captors !!!<br /> A Line CDD, a few LED ... and a program<br /> <br /> <object style="height: 390px; width: 640px;"><param name="movie" value="http://www.youtube.com/v/Avb23FWcEeU?version=3"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/Avb23FWcEeU?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/homemade-touch-screen.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/homemade-touch-screen.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-23T16:56:00+01:00'>4:56&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/homemade-touch-screen.html#comment-form' onclick=''> 1 comment: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=8840195638245909193' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=8840195638245909193&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Image%20processing' rel='tag'>Image processing</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Multitouch' rel='tag'>Multitouch</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='https://lh3.googleusercontent.com/-xeEitpbKX4g/TYmi6sjz8TI/AAAAAAAAAJ4/G8s8TL7FJaw/s400/Monet.JPG' itemprop='image_url'/> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='38594877499556734' itemprop='postId'/> <a name='38594877499556734'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/trip-inside-monet-paintings.html'>A trip inside Monet paintings !</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-38594877499556734' itemprop='description articleBody'> An awesome trip inside Monet paintings.<br /> <br /> <a href="http://www.monet2010.com/fr#/voyage/">http://www.monet2010.com/fr#/voyage/</a><br /> <br /> <div class="separator" style="clear: both; text-align: center;"><a href="https://lh3.googleusercontent.com/-xeEitpbKX4g/TYmi6sjz8TI/AAAAAAAAAJ4/G8s8TL7FJaw/s1600/Monet.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="257" src="https://lh3.googleusercontent.com/-xeEitpbKX4g/TYmi6sjz8TI/AAAAAAAAAJ4/G8s8TL7FJaw/s400/Monet.JPG" width="400" /></a></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/trip-inside-monet-paintings.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/trip-inside-monet-paintings.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-23T08:36:00+01:00'>8:36&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/trip-inside-monet-paintings.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=38594877499556734' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=38594877499556734&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Monday, March 21, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='8615447575301528227' itemprop='postId'/> <a name='8615447575301528227'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/kinect-hack-help-blind-people.html'>Kinect Hack : Help blind people</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-8615447575301528227' itemprop='description articleBody'> NAVI -- Navigational Aids for the Visually Impaired<br /> <br /> <object style="height: 390px; width: 640px;"><param name="movie" value="http://www.youtube.com/v/l6QY-eb6NoQ?version=3"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/l6QY-eb6NoQ?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object><br /> <br /> Source :&nbsp;<a href="http://hci.uni-konstanz.de/blog/2011/03/15/navi/?lang=en">http://hci.uni-konstanz.de/blog/2011/03/15/navi/?lang=en</a> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/kinect-hack-help-blind-people.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/kinect-hack-help-blind-people.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-21T14:21:00+01:00'>2:21&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/kinect-hack-help-blind-people.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=8615447575301528227' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=8615447575301528227&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/computer%20vision' rel='tag'>computer vision</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Kinect' rel='tag'>Kinect</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='4251546763415770438' itemprop='postId'/> <a name='4251546763415770438'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/iface3d.html'>iFace3D</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-4251546763415770438' itemprop='description articleBody'> After iScan3D&nbsp;<a href="http://www.digiteyezer.com/Digiteyezer/index.html">http://www.digiteyezer.com/Digiteyezer/index.html</a><br /> <br /> digiteyezer have launch the same service for Faces :<br /> <br /> <object height="390" width="640"><param name="movie" value="http://www.youtube.com/v/2u9Tttv44t0&amp;hl=en_US&amp;feature=player_embedded&amp;version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/2u9Tttv44t0&amp;hl=en_US&amp;feature=player_embedded&amp;version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></embed></object> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/iface3d.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/iface3d.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-21T09:06:00+01:00'>9:06&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/iface3d.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=4251546763415770438' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=4251546763415770438&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Computer%20Graphics' rel='tag'>Computer Graphics</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/computer%20vision' rel='tag'>computer vision</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Friday, March 18, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='157797832695223461' itemprop='postId'/> <a name='157797832695223461'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/on-fog-display.html'>On Fog "3D" display</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-157797832695223461' itemprop='description articleBody'> <div style="text-align: center;"><object style="height: 390px; width: 640px;"><param name="movie" value="http://www.youtube.com/v/yzIeiyzRLCw?version=3"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/yzIeiyzRLCw?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object></div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/on-fog-display.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/on-fog-display.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-18T17:28:00+01:00'>5:28&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/on-fog-display.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=157797832695223461' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=157797832695223461&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Computer%20Graphics' rel='tag'>Computer Graphics</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='522321249161264814' itemprop='postId'/> <a name='522321249161264814'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/configure-matlab-to-use-visual-2010-cc.html'>Configure Matlab to use Visual 2010 C/C++ compiler</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-522321249161264814' itemprop='description articleBody'> By default Matlab 2009 have only a C compiler (mex file compiler).<br /> It could detects the Visual compiler for the 2005/2008 version but not for the 2010 version.<br /> <br /> Hopefully MathWorks have released a patch ;)<br /> <br /> Link : <a href="http://www.mathworks.com/support/solutions/attachment.html?resid=1-D92I0C&amp;solution=1-D5W493">VS2010MEXSupport.zip</a><br /> <h3>Subject:</h3>How can I use Microsoft Visual C++ 2010 to create MEX files with MATLAB 7.10 (R2010a)?<br /> <h3>Problem Description:</h3>I would like to use Visual C++ 2010 to create MEX files for use in MATLAB. <br /> <br /> <h3>Solution:</h3>The Microsoft Visual C++ 2010 compiler is not supported on the released version of MATLAB 7.10 (R2010a), but support can be added by installing a patch. To install the patch:<br /> <br /> 1. Download the patch attached to this Solution. The patch includes files needed to support these combinations of MATLAB and Visual C++ 2010:<br /> &#8226; Visual C++ 2010 Professional and 64-bit MATLAB 7.10 (R2010a)<br /> &#8226; Visual C++ 2010 Professional and 32-bit MATLAB 7.10 (R2010a)<br /> &#8226; Visual C++ 2010 Express (Windows SDK 7.1 also required) and 64-bit MATLAB 7.10 (R2010a)<br /> &#8226; Visual C++ 2010 Express and 32-bit MATLAB 7.10 (R2010a)<br /> <br /> 2. Confirm that you are running MATLAB 7.10 (R2010a). You can check this using the About box available at Help-&gt;About MATLAB.<br /> <br /> 3. Unzip the contents of the patch into your MATLAB installation. This can be done from within MATLAB itself with the command:<br /> unzip( path_to_zip_file, matlabroot);<br /> <br /> 4. Set up MEX to use Visual C++ 2010 with the command:<br /> <br /> <code> mex &#8211;setup</code> Visual C++ 2010 should now be among the listed options.<br /> <br /> Note that this patch will only work with MATLAB 7.10 (R2010a). Using this patch with any version of MATLAB is not supported.<br /> <br /> Other MathWorks products such as Real-Time Workshop do not support Visual C++ 2010.<br /> <br /> Source : <a href="http://www.mathworks.com/support/solutions/en/data/1-D5W493/?solution=1-D5W493">MathWorks</a> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/configure-matlab-to-use-visual-2010-cc.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/configure-matlab-to-use-visual-2010-cc.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-18T10:04:00+01:00'>10:04&#8239;AM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/configure-matlab-to-use-visual-2010-cc.html#comment-form' onclick=''> 1 comment: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=522321249161264814' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=522321249161264814&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Matlab' rel='tag'>Matlab</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Visual%20Studio' rel='tag'>Visual Studio</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> <div class="date-outer"> <h2 class='date-header'><span>Friday, March 11, 2011</span></h2> <div class="date-posts"> <div class='post-outer'> <div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'> <meta content='http://www.girocam.com/img/product/face_canard.png' itemprop='image_url'/> <meta content='2419592071898701243' itemprop='blogId'/> <meta content='1646733732424594657' itemprop='postId'/> <a name='1646733732424594657'></a> <h3 class='post-title entry-title' itemprop='name'> <a href='http://smallideasforabigworld.blogspot.com/2011/03/panoramic-video-acquisition.html'>Panoramic video acquisition</a> </h3> <div class='post-header'> <div class='post-header-line-1'></div> </div> <div class='post-body entry-content' id='post-body-1646733732424594657' itemprop='description articleBody'> Giroptic French company purpose a nice tiny box to perform 360&#176;*180&#176; acquisitions up to 30mega pixels.<br /> <span class="Apple-style-span" style="color: #767676; font-family: 'Lucida Grande', Verdana, Helvetica, Geneva, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"><br /> </span><br /> <span class="Apple-style-span" style="color: #767676; font-family: 'Lucida Grande', Verdana, Helvetica, Geneva, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;">3 fisheye lenses apparently share one imaging sensor, everything hard-mounted into one device, so you'd have zero alignment issues.&nbsp;</span><span class="Apple-style-span" style="color: #767676; font-family: 'Lucida Grande', Verdana, Helvetica, Geneva, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"><br /> </span><span class="Apple-style-span" style="color: #767676; font-family: 'Lucida Grande', Verdana, Helvetica, Geneva, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;"><br /> </span><span class="Apple-style-span" style="color: #767676; font-family: 'Lucida Grande', Verdana, Helvetica, Geneva, Arial, 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 18px;">It can shoot panoramic video and take 7000x3000 (= 21 MP) panoramas with HDR bracketing.</span><br /> <br /> <div class="separator" style="clear: both; text-align: center;"><a href="http://www.girocam.com/img/product/face_canard.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://www.girocam.com/img/product/face_canard.png" width="315" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /> </div><div class="separator" style="clear: both; text-align: center;"><a href="http://www.girocam.com/img/home/dessus_no_capot.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://www.girocam.com/img/home/dessus_no_capot.png" width="228" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /> </div><div class="separator" style="clear: both; text-align: center;">It replaces nicely the old Giroptic camera :</div><div class="separator" style="clear: both; text-align: center;"><a href="http://www.giroptic.com/img/bg_home.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="270" src="http://www.giroptic.com/img/bg_home.png" width="320" /></a></div><div class="separator" style="clear: both; text-align: center;"><br /> </div><div class="separator" style="clear: both; text-align: center;"><br /> </div><div class="separator" style="clear: both; text-align: left;">Source : <a href="http://www.girocam.com/">Girocam</a></div><div class="separator" style="clear: both; text-align: center;"><br /> </div><div class="separator" style="clear: both; text-align: center;"><span class="Apple-style-span" style="color: #767676; font-family: 'Lucida Grande', Verdana, Helvetica, Geneva, Arial, 'Trebuchet MS', sans-serif; font-size: small;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px;"><br /> </span></span></div><div class="separator" style="clear: both; text-align: center;"><br /> </div> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Publié par <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/11935353465388522469' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/11935353465388522469' rel='author' title='author profile'> <span itemprop='name'>TheFrenchLeaf</span> </a> </span> </span> <span class='post-timestamp'> à l'adresse <meta content='http://smallideasforabigworld.blogspot.com/2011/03/panoramic-video-acquisition.html' itemprop='url'/> <a class='timestamp-link' href='http://smallideasforabigworld.blogspot.com/2011/03/panoramic-video-acquisition.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2011-03-11T14:03:00+01:00'>2:03&#8239;PM</abbr></a> </span> <span class='post-comment-link'> <a class='comment-link' href='http://smallideasforabigworld.blogspot.com/2011/03/panoramic-video-acquisition.html#comment-form' onclick=''> No comments: </a> </span> <span class='post-icons'> <span class='item-action'> <a href='https://www.blogger.com/email-post.g?blogID=2419592071898701243&postID=1646733732424594657' title='Email Post'> <img alt='' class='icon-action' height='13' src='https://resources.blogblog.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1067250236'> <a href='https://www.blogger.com/post-edit.g?blogID=2419592071898701243&postID=1646733732424594657&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> Libellés : <a href='http://smallideasforabigworld.blogspot.com/search/label/Image%20processing' rel='tag'>Image processing</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Panoramic%20images' rel='tag'>Panoramic images</a>, <a href='http://smallideasforabigworld.blogspot.com/search/label/Tech%20demo' rel='tag'>Tech demo</a> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> </div> </div></div> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='http://smallideasforabigworld.blogspot.com/' id='Blog1_blog-pager-newer-link' title='Newer Posts'>Newer Posts</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='http://smallideasforabigworld.blogspot.com/search?updated-max=2011-03-11T14:03:00%2B01:00&amp;max-results=7' id='Blog1_blog-pager-older-link' title='Older Posts'>Older Posts</a> </span> <a class='home-link' href='http://smallideasforabigworld.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='blog-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='http://smallideasforabigworld.blogspot.com/feeds/posts/default' target='_blank' type='application/atom+xml'>Posts (Atom)</a> </div> </div> </div></div> </div> </div> <div class='column-left-outer'> <div class='column-left-inner'> <aside> </aside> </div> </div> <div class='column-right-outer'> <div class='column-right-inner'> <aside> <div class='sidebar section' id='sidebar-right-1'><div class='widget AdSense' data-version='1' id='AdSense1'> <div class='widget-content'> <script type="text/javascript"><!-- google_ad_client="pub-5903194663998407"; google_ad_host="pub-1556223355139109"; google_alternate_ad_url="http://www.blogger.com/img/blogger_ad160x600.html"; google_ad_width=160; google_ad_height=600; google_ad_format="160x600_as"; google_ad_type="text_image"; google_ad_host_channel="00000"; google_color_border="000000"; google_color_bg="000000"; google_color_link="777777"; google_color_url="99AADD"; google_color_text="999999"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <div class='clear'></div> </div> </div><div class='widget Followers' data-version='1' id='Followers1'> <h2 class='title'>Followers</h2> <div class='widget-content'> <div id='Followers1-wrapper'> <div style='margin-right:2px;'> <div><script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <div id="followers-iframe-container"></div> <script type="text/javascript"> window.followersIframe = null; function followersIframeOpen(url) { gapi.load("gapi.iframes", function() { if (gapi.iframes && gapi.iframes.getContext) { window.followersIframe = gapi.iframes.getContext().openChild({ url: url, where: document.getElementById("followers-iframe-container"), messageHandlersFilter: gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER, messageHandlers: { '_ready': function(obj) { window.followersIframe.getIframeEl().height = obj.height; }, 'reset': function() { window.followersIframe.close(); followersIframeOpen("https://www.blogger.com/followers.g?blogID\x3d2419592071898701243\x26colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMzMzMzMzMiByNjYzMzMDAqC3RyYW5zcGFyZW50MgcjMDAwMDAwOgcjMzMzMzMzQgcjY2MzMzAwSgcjNzc3Nzc3UgcjY2MzMzAwWgt0cmFuc3BhcmVudA%3D%3D\x26pageSize\x3d21\x26origin\x3dhttp://smallideasforabigworld.blogspot.com/"); }, 'open': function(url) { window.followersIframe.close(); followersIframeOpen(url); }, 'blogger-ping': function() { } } }); } }); } followersIframeOpen("https://www.blogger.com/followers.g?blogID\x3d2419592071898701243\x26colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMzMzMzMzMiByNjYzMzMDAqC3RyYW5zcGFyZW50MgcjMDAwMDAwOgcjMzMzMzMzQgcjY2MzMzAwSgcjNzc3Nzc3UgcjY2MzMzAwWgt0cmFuc3BhcmVudA%3D%3D\x26pageSize\x3d21\x26origin\x3dhttp://smallideasforabigworld.blogspot.com/"); </script></div> </div> </div> <div class='clear'></div> </div> </div><div class='widget BlogArchive' data-version='1' id='BlogArchive1'> <h2>Blog Archive</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2013/'> 2013 </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2013/08/'> August </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2012/'> 2012 </a> <span class='post-count' dir='ltr'>(6)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2012/11/'> November </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2012/06/'> June </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2012/02/'> February </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2012/01/'> January </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> &#9660;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/'> 2011 </a> <span class='post-count' dir='ltr'>(101)</span> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> &#9660;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/12/'> December </a> <span class='post-count' dir='ltr'>(3)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/12/particle-swarm-optimisation-and-genetic.html'>Particle Swarm Optimisation and Genetic Algorithm</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/12/short-but-simple-gdb-tutorial.html'>A short but simple GDB tutorial</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/12/hugo-cabret-3d-preview.html'>Hugo Cabret 3D preview</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/11/'> November </a> <span class='post-count' dir='ltr'>(3)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/11/doom3-source-code-is-available.html'>DOOM3 Source code is available</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/11/microsoft-kinect-for-pc.html'>Microsoft Kinect for PC</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/11/good-bye-photosceneeditor-hi-123d-catch.html'>Good bye PhotoSceneEditor, Hi 123D Catch</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/10/'> October </a> <span class='post-count' dir='ltr'>(4)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/10/microsoft-holodesk.html'>Microsoft Holodesk</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/10/marvelous-designer.html'>Marvelous designer</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/10/fitnect-interactive-virtual-fitting.html'>Fitnect - Interactive Virtual Fitting / Dressing R...</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/10/rendering-synthetic-objects-into-legacy.html'>Rendering Synthetic Objects into Legacy Photographs</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/09/'> September </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/09/3d-camera-mapping.html'>3d camera mapping.</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/08/'> August </a> <span class='post-count' dir='ltr'>(7)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/08/kinect-mocap.html'>Kinect Mocap</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/08/autodesk-real-time-point-cloud.html'>Autodesk real time point cloud reconstruction with...</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/08/wind-simulation-from-autodesk.html'>Wind simulation from Autodesk</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/08/spark-modular-composable-shaders-for.html'>Spark: Modular, Composable Shaders for Graphics Ha...</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/08/amd-app-kernelanalyzer-19-opencl.html'>AMD APP KernelAnalyzer 1.9 (OpenCL)</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/08/mathematical-music.html'>Mathematical Music</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/08/nature-and-math-in-adequation.html'>Nature and Math in adequation</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/07/'> July </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/07/tech-companies-and-connection.html'>Tech companies and interconnections</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/06/'> June </a> <span class='post-count' dir='ltr'>(9)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/many-face-to-create-new-ones.html'>Many faces to create new ones</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/computer-vision-help-food-analysis.html'>Computer Vision help food analysis</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/nice-ring-juggling.html'>Nice ring juggling</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/official-microsoft-kinect-sdk-is-out.html'>Official Microsoft Kinect SDK is out</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/google-search-by-image.html'>Google Search by image</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/amd-gdebugger-advanced-opengl-and.html'>AMD gDEBugger, an advanced OpenGL and OpenCL debugger</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/whats-new-in-computer-vision-system.html'>What&#39;s new in Computer Vision System Toolbox in R2...</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/matlab-visual-sudoku-solver.html'>Matlab Visual Sudoku Solver</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/06/kinect-graffiti.html'>Kinect Graffiti</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/05/'> May </a> <span class='post-count' dir='ltr'>(14)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/svg-girl.html'>SVG GIRL</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/new-ar-game-from-dassault-system.html'>New AR game from Dassault System</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/hello-readwrite-world.html'>Hello Read/Write World!</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/123d-free-nurbs-autodesk-3d-modeler.html'>123d A free Nurbs Autodesk 3D modeler</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/sony-smartar.html'>Sony &quot;smartAR&quot;</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/multiscreen-e-ink-tablet-prototype-chi.html'>Multiscreen e-ink tablet prototype - CHI 2011</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/siggraph-2011-technical-papers-video.html'>SIGGRAPH 2011 Technical Papers Video Preview</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/from-tiny-to-large-icons.html'>From tiny to large Icons</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/digital-micrography.html'>Digital Micrography</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/intel-opencl-11-sdk-beta-version.html'>Intel OpenCL 1.1 SDK (beta version)</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/kinect-facial-capture.html'>Kinect facial capture</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/enjoy-physics.html'>Enjoy physics</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/41-gigapixel-panorama.html'>41 GigaPixels panorama</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/05/panasonic-viera-ar-setup-simulator.html'>Panasonic VIERA AR Setup Simulator</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/04/'> April </a> <span class='post-count' dir='ltr'>(11)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/real-time-spherical-panorama-on-iphone.html'>Real Time Spherical panorama on Iphone</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-pose-recognition-details.html'>Kinect pose recognition Details !</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-official-sdk-official-website.html'>Kinect Official SDK ... official website</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/virtual-visite.html'>Virtual visite</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/car-ads-projected.html'>Car Ads Projected</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/3d-clip-again.html'>3D clip again</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-and-windows-7.html'>Kinect and windows 7</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/kinect-fun-in-barcelona.html'>Kinect fun in Barcelona</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/360-pano-mirror-for-iphone.html'>360&#176; pano mirror for Iphone</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/what-will-be-new-in-unreal-engine-3.html'>What will be new in Unreal Engine 3</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/04/programmer-level-matrix.html'>Programmer level matrix ?</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/03/'> March </a> <span class='post-count' dir='ltr'>(18)</span> <ul class='posts'> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/quadrocopter-ball-juggling.html'>Quadrocopter Ball Juggling</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/ornithoptere.html'>Ornithoptère</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/total-immersion-receives-usd-55m-in.html'>Total Immersion Receives USD $5,5M in Funding Led ...</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/batterytech-high-performance-mobile.html'>BatteryTech - high-performance mobile platform abs...</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/amd-opencl-emu-documentation.html'>AMD OpenCL Emu Documentation</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/katamari-in-your-browser.html'>Katamari in your Browser</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/crysis-2-cryengine-3-key-rendering.html'>Crysis 2 &amp; CryENGINE 3 Key Rendering Features</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/homemade-touch-screen.html'>Homemade Touch screen</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/trip-inside-monet-paintings.html'>A trip inside Monet paintings !</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/kinect-hack-help-blind-people.html'>Kinect Hack : Help blind people</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/iface3d.html'>iFace3D</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/on-fog-display.html'>On Fog &quot;3D&quot; display</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/configure-matlab-to-use-visual-2010-cc.html'>Configure Matlab to use Visual 2010 C/C++ compiler</a></li> <li><a href='http://smallideasforabigworld.blogspot.com/2011/03/panoramic-video-acquisition.html'>Panoramic video acquisition</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/02/'> February </a> <span class='post-count' dir='ltr'>(13)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2011/01/'> January </a> <span class='post-count' dir='ltr'>(17)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/'> 2010 </a> <span class='post-count' dir='ltr'>(122)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/12/'> December </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/11/'> November </a> <span class='post-count' dir='ltr'>(9)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/10/'> October </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/09/'> September </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/08/'> August </a> <span class='post-count' dir='ltr'>(18)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/07/'> July </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/06/'> June </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/05/'> May </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/04/'> April </a> <span class='post-count' dir='ltr'>(8)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/03/'> March </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/02/'> February </a> <span class='post-count' dir='ltr'>(13)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2010/01/'> January </a> <span class='post-count' dir='ltr'>(10)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2009/'> 2009 </a> <span class='post-count' dir='ltr'>(22)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2009/12/'> December </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2009/11/'> November </a> <span class='post-count' dir='ltr'>(15)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> &#9658;&#160; </span> </a> <a class='post-count-link' href='http://smallideasforabigworld.blogspot.com/2009/10/'> October </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div><div class='widget Profile' data-version='1' id='Profile1'> <h2>Contributors</h2> <div class='widget-content'> <ul> <li><a class='profile-name-link g-profile' href='https://www.blogger.com/profile/07171716977521117265' style='background-image: url(//www.blogger.com/img/logo-16.png);'>Dlpnet</a></li> <li><a class='profile-name-link g-profile' href='https://www.blogger.com/profile/11935353465388522469' style='background-image: url(//www.blogger.com/img/logo-16.png);'>TheFrenchLeaf</a></li> </ul> <div class='clear'></div> </div> </div></div> </aside> </div> </div> </div> <div style='clear: both'></div> <!-- columns --> </div> <!-- main --> </div> </div> <div class='main-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> <footer> <div class='footer-outer'> <div class='footer-cap-top cap-top'> <div class='cap-left'></div> <div class='cap-right'></div> </div> <div class='fauxborder-left footer-fauxborder-left'> <div class='fauxborder-right footer-fauxborder-right'></div> <div class='region-inner footer-inner'> <div class='foot no-items section' id='footer-1'></div> <table border='0' cellpadding='0' cellspacing='0' class='section-columns columns-2'> <tbody> <tr> <td class='first columns-cell'> <div class='foot no-items section' id='footer-2-1'></div> </td> <td class='columns-cell'> <div class='foot no-items section' id='footer-2-2'></div> </td> </tr> </tbody> </table> <!-- outside of the include in order to lock Attribution widget --> <div class='foot section' id='footer-3' name='Footer'><div class='widget Attribution' data-version='1' id='Attribution1'> <div class='widget-content' style='text-align: center;'> Watermark theme. Powered by <a href='https://www.blogger.com' target='_blank'>Blogger</a>. </div> <div class='clear'></div> </div></div> </div> </div> <div class='footer-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </footer> <!-- content --> </div> </div> <div class='content-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </div> <script type='text/javascript'> window.setTimeout(function() { document.body.className = document.body.className.replace('loading', ''); }, 10); </script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/1794065108-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY7F88BY4b0GxKF9Df_RwUkIgLoM1A:1710829513468';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d2419592071898701243','//smallideasforabigworld.blogspot.com/2011/','2419592071898701243'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '2419592071898701243', 'title': 'Small ideas for a big world', 'url': 'http://smallideasforabigworld.blogspot.com/2011/', 'canonicalUrl': 'http://smallideasforabigworld.blogspot.com/2011/', 'homepageUrl': 'http://smallideasforabigworld.blogspot.com/', 'searchUrl': 'http://smallideasforabigworld.blogspot.com/search', 'canonicalHomepageUrl': 'http://smallideasforabigworld.blogspot.com/', 'blogspotFaviconUrl': 'http://smallideasforabigworld.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': false, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Small ideas for a big world - Atom\x22 href\x3d\x22http://smallideasforabigworld.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Small ideas for a big world - RSS\x22 href\x3d\x22http://smallideasforabigworld.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Small ideas for a big world - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/2419592071898701243/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-5903194663998407', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/4540d11ee6a9acb1', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'Twitter', 'key': 'twitter', 'shareMessage': 'Share to Twitter', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'archive', 'pageName': '2011', 'pageTitle': 'Small ideas for a big world: 2011'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'Watermark', 'localizedName': 'Watermark', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': false, 'variant': 'birds', 'variantId': 'birds'}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'Small ideas for a big world', 'description': 'A bunch of news about Computer vision, Computer Graphics, GPGPU or the mix of the three....', 'url': 'http://smallideasforabigworld.blogspot.com/2011/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': false, 'isArchive': true, 'isLabelSearch': false, 'archive': {'year': 2011, 'rangeMessage': 'Showing posts from 2011'}}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/3614066654-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/3268905543-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense1', 'sidebar-right-1', document.getElementById('AdSense1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FollowersView', new _WidgetInfo('Followers1', 'sidebar-right-1', document.getElementById('Followers1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar-right-1', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar-right-1', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer-3', document.getElementById('Attribution1'), {}, 'displayModeFull')); </script> </body> </html>