Click here to Skip to main content
15,881,248 members
Articles / Desktop Programming / Win32
Article

A C++ blob editor in less than 128 lines of code

Rate me:
Please Sign up or sign in to vote.
4.13/5 (17 votes)
6 May 2008GPL33 min read 46.5K   765   22   4
A very simple C++ source code showing how to create an interactive 2D graphical blobs editor, using the CImg library.

CImg_blob_editor

Introduction

This article provides a very small piece of C++ code (less than 128 lines) that creates a simple but functional 2D blobs editor.

The editor consists of a main window where the user can create, delete, and move blobs having random sizes and colors. The underlying algorithm is based on implicit functions to create and merge blobs together. This is very similar to the famous Metaballs technique, but here, applied on 2D functions.

A video of this proposed blobs editor can be seen here.

Background

This project illustrates the use of a very handy and simple image class provided by the CImg Library, a C++ template image processing toolkit. It allows to shorten the code by focusing on the algorithm itself, instead of having to do all the low-level image stuffs.

CImg is a very portable library, so I've been able to provide both Windows and Linux executables of the same program in the above archive.

Using the code

The code is quite small, and mainly consists of a main event loop, waiting for user interaction. When the user clicks the mouse with the left button, it creates a blob (or moves an existing one). Using the right mouse button deletes a blob. The colors and sizes of the created blobs are randomly chosen.

The code uses the main image structure of the CImg library, which is, in our case, a CImg<unsigned int>, i.e., a 2D container of pixels of type unsigned int. Pixel access and modification are classically done through the function CImg<T>::operator(), which is provided with the image class.

The blob positions, sizes, and colors are stored in lists structures, also provided by the CImg library (although, it would be possible to use std::vector<> instead).

Finally, the display window is created and updated using the CImgDisplay class of the CImg library, which is great since it is simple to use and multi-platform, so the same code will work the same way on different architectures.

From a mathematical point of view, each blob is considered as an implicit Gaussian function. All the blobs are added into a potential field (here, described by the main image img). Then, this potential field is colored and threshold-ed according to the blob colors and sizes. As a result, a color version of the potential field that contains the blobs is created. Additionally, small reflections are drawn with successive spheres located relative to the blob coordinates, in order to create the final rendered blob image.

Points of interest

I think this code is a nice way to discover the use of implicit functions to model simple mathematical objects. The same kind of techniques are applied in 3D rendering for doing metaballs, and is heavily used nowadays to model smooth 3D objects.

From a more technical point of view, it may make you discover the CImg library, which is a nice C++ toolkit for doing generic image processing. It really simplifies the coding of algorithms related to images, as well as provides a lightweight and multi-platform development framework for image/signal processing.

I really hope you'll enjoy this piece of code.

License

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


Written By
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralTres Jolie Pin
Member 364564823-Aug-08 16:06
Member 364564823-Aug-08 16:06 
Generalsome minor issues Pin
peterchen7-May-08 0:04
peterchen7-May-08 0:04 
GeneralRe: some minor issues Pin
Ronounours7-May-08 0:54
Ronounours7-May-08 0:54 
GeneralRe: some minor issues Pin
Guillaume Geffard7-May-08 1:56
Guillaume Geffard7-May-08 1:56 

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.