Click here to Skip to main content
Licence GPL3
First Posted 7 May 2008
Views 21,549
Downloads 235
Bookmarked 22 times

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

By Ronounours | 7 May 2008
A very simple C++ source code showing how to create an interactive 2D graphical blobs editor, using the CImg library.

1

2
4 votes, 26.7%
3
1 vote, 6.7%
4
10 votes, 66.7%
5
4.08/5 - 15 votes
μ 4.08, σa 1.59 [?]

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)

About the Author

Ronounours



France France

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralTres Jolie PinmemberMember 364564817:06 23 Aug '08  
Generalsome minor issues Pinsupporterpeterchen1:04 7 May '08  
(1) please make the google video a link, or consider embedding it here (IIRC Chris added this functionality lately)
 
(2) the executable in the zip file won't run:

This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.

 
Is there any aplication to it besides looking immensely cute? Big Grin | :-D
 
We are a big screwed up dysfunctional psychotic happy family - some more screwed up, others more happy, but everybody's psychotic joint venture definition of CP
blog: TDD - the Aha! | Linkify!| FoldWithUs! | sighist


GeneralRe: some minor issues PinmemberRonounours1:54 7 May '08  
GeneralRe: some minor issues PinmemberGuillaume Geffard2:56 7 May '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120210.1 | Last Updated 7 May 2008
Article Copyright 2008 by Ronounours
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid