Augmented Reality example in Python

Started by
1 comment, last by slmgc 11 years, 7 months ago
Hello,

two years ago, when I was experimenting with python and pygame, I've stumbled upon pygame's camera module and decided to write some kind of a simple augmented reality application (like Microsoft's Kinect, but much simplier) to have some programming practice. After a few dedicated days, I've finally completed it. AR example targets an object with a marker and allows you to interact with virtual objects: bouncing balls, button-like interface elements, etc. Here is a screenshot:

44b802581a8001bad884ad59cb5efcae.png

You can run it under Linux and Windows (not sure about OSX) out of the box. It requires python 2.5.x-2.7.x and pygame 1.9.x.

AR example for Window and Linux: https://bitbucket.or...ample-0.3.1.zip
Just install python and pygame (windows users don't need pygame, I've included pygame into the package), unpack ar-example-0.3.1.zip into some folder and click on "augmented.py" to run the program.

ActivePython 2.7 for Windows: http://downloads.act...5-win32-x86.msi

Instruction:

  1. Take an object of a simple shape and solid color.
  2. Fixate an object's color in a color picker.
  3. Change the chosen color's RGB components so only the targeted object would be visible on screen.
  4. After you are ready, switch from the calibration to the targeting mode.
  5. If the result is not good enough, switch back to the calibration mode and repeat the above steps.


Program's source code is under GPL 2. VideoCapture by Markus Gritsch is under LGPL 2.1.

P.S. A couple of days ago I've decided to write a new version of AR example using proper techniques such as: modular design, event-driven architecture with loosely-coupled components, multithreading, separate config file, etc. New source code is under public domain.

If you are interested, you can get AR example's source code from my project's page at pygame.org: http://pygame.org/pr...mple-1622-.html
Or you can grab it directly from my mercurial repository at bitbucket: https://bitbucket.org/slmgc/ar-example

P.P.S. Any feedback, questions, suggestions are most welcomed.
Advertisement
I've added direct links for python and pygame for Windows to run the program.
I've added pygame library to the package for windows users, so they don't need to download it to run AR example, just install python 2.7

This topic is closed to new replies.

Advertisement