Click here to Skip to main content
15,867,568 members
Articles / Programming Languages / C

Video Texture in OpenGL

Rate me:
Please Sign up or sign in to vote.
2.50/5 (11 votes)
25 Mar 2009GPL31 min read 112K   8.6K   25   13
This article describes how a texture can be created in OpenGL from a live video stream from a web cam or a video file.

Introduction

This short program shows how a live video stream from a web cam (or from a video file) can be rendered in OpenGL as a texture. The live video stream is captured using the Open Source Computer Vision library (OpenCV). The program also shows how an OpenCV image can be converted into OpenGL texture. This code can be used as the first step in the development of an Augmented Reality application using OpenCV and OpenGL.

Understanding the Code

The program renders an OpenGL textured quad which shows a live video stream. The code does not contain any additional functionality, and is kept very simple for easy understanding.

The OpenGL texture is continuously created in the OnIdle callback function. The next available frame in the video stream is captured first:

C++
IplImage *image = cvQueryFrame(g_Capture);

The image is stored in the OpenCV data structure IplImage. Please see the OpenCV documentation for details. The image captured by OpenCV is stored as a BGR. It is first converted to RGB using the OpenCV function cvCvtColor.

C++
cvCvtColor(image, image, CV_BGR2RGB);

Then, the following magic call creates a 2D OpenGL texture from the OpenCV image:

C++
gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGB, image->width, image->height, 
                  GL_RGB, GL_UNSIGNED_BYTE, image->imageData);

The texture is loaded into memory and is available for rendering.

Compiling and Running

The code is compiled and tested using Microsoft Visual Studio 2008. However, it can be compiled using any C++ compiler on any platform. The program uses the OpenGL, GLUT, and OpenCV libraries. Please make sure that you have installed them and paths to the include and lib directories are set. OpenCV can be downloaded from here.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Jim Crafton14-Jan-10 9:58
Jim Crafton14-Jan-10 9:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.