This appendix shows how to set up the Pygame library and how to use Pygame for window management in an OpenCV application. Also, the appendix gives an overview of Pygame's other functionality and some resources for learning Pygame.
All the finished code for this chapter can be downloaded from my website: http://nummist.com/opencv/3923_06.zip.
Let's assume that we already have Python set up according to one of the approaches described in Chapter 1, Setting up OpenCV. Depending on our existing setup, we can install Pygame in one of the following ways:
$ sudo port install py27-game
$ brew install sdl sdl_image sdl_mixer sdl_ttf smpeg portmidi $ /usr/local/share/python/pip install \ > hg+http://bitbucket.org/pygame/pygame
$ sudo apt-get install python-pygame
pygame
, pygame27
, py-game
, py27-game
, python-pygame,
and python27-pygame
.Now, Pygame should be ready for use.