Click here to Skip to main content
15,886,110 members
Articles / Desktop Programming / MFC

A C++ Implementation of an Improved Contour Plotting Algorithm

Rate me:
Please Sign up or sign in to vote.
4.74/5 (13 votes)
30 Jul 20023 min read 326.7K   12.7K   69   41
This class generates isocurves of a user defined function. Curves are drawn to OpenGL dc or stored in line strips.
In this article, you will learn about a contour plot class, which is an improved version of the Level Curve Tracing Algorithm. It was designed to draw iso-contour of a user-defined function f(x,y).

Sample Image - contour.jpg

Introduction

This article presents a contour plot class. It is designed to draw iso-contour of a user-defined function f(x,y). I wrote it to integrate it in a graphic library: Plot Graphic Library

The class is based on the algorithm presented in [1] (Check References section). It is basically an improved version of the Level Curve Tracing Algorithm.

Understanding the Algorithm

The algorithm uses several tuning parameters that the user must choose in order to have the best quality/performance ratio of the algorithm:

  • Domain of x,y:
    C++
    // Setting domain x=[0,1], y=[2,3]
    double pLimits[4]={0,1,2,3,4};
    CContour contour;
    contour.SetLimits(pLimits);
    
  • Size of the primary grid: The grid on which evaluate the function f(x,y). See SetFirGrid, GetColFir, GetRowFir. The parameter influences greatly the quality of the contour.
  • Size of the secondary grid: The grid where the function is going to be evaluated. This grid can be much finer that the first grid. See SetSecGrid, GetColSec, GetRowSec.

Classes

CContour

Main contour class. This class cannot be directly but has to be inherited. The inherited class must implement the ExportLine function. To generate contours, use

C++
void Generate()

Make to have set the field function (f(x,y)) before calling this function. The function will call ExportLine for each new segment.

CGLContour

Use this class to draw contours to an OpenGL device context.

CListContour

Use this class to generate contour and store them as line strip. The user can retrieve each contour and use it as he wills. This function uses two sub-classes:

  • CLineStrip, a list < int > containing the index of the points
  • CLineStripList, a list <CLineStrip*>

The line strip can be accessed by:

C++
CLineStripList* GetList(iPane);

where iPane is the index of the contour.

How To...

Set Up a Contour Object

Suppose that we have inherited a class from CContour and overridden ExportLine function.

C++
class CMyContour : CContour
{
    void ExportLine(...);
}

Now, first set the function f(x,y):

C++
double  myF(double x, double y)
{ [...] return ... };

CMyContour contour;
// Setting f(x,y)=myF
contour.SetFieldFcn(myF);

Then set the iso-contour values, i.e.:

C++
int n;
CMyContour contour;
vector<double> vIso(n);
for (int i=0;i<n;i++)
{ ... }
// setting iso-lines
contour.SetPlanes(vIso);

The contour is ready to be used.

Draw Contours using OpenGL

Use CGLContour as inherited function of CContour.

C++
CGLContour contour;
// Setting up contour : setting f, domain of x,
// isocurve values
[...]
// generating contour
contour.Generate();

Retrieve Contours in Line Strip

Use CListContour as inherited function of CContour. Only the index of the points with respect to second grid are stored in the list. You can access their real value by using GetXi() and GetYi() functions.

C++
CGLContour contour;
// Setting up contour : setting f,
// domain of x, isocurve values
[...]
// generating contour
contour.Generate();
// Retrieving info
CLineStripList* pStripList;
// getting 0-th iso-curve
pStripList=contour.GetLines(0);
ASSERT(pStripList);
// iterating liststrip vertices
CLineStrip::iterator pos;
for (pos=pStripList->begin();
    pos != pStripList->end() ; pos++)
{
    pStrip=(*pos);
    ASSERT(pStrip);
    if (pStrip->empty())
        continue;
    // using info of strip list
    // pStrip contains the successive index of the points
    // See CContourGLDoc.OnDraw for further details
    [...]
}

Updates

  • 31st August, 2002: Added contribution from Chenggang Zhou: better strip compression, threshold merging, area of strip, boundary detection, also some minor changes I don't remember...
  • 4th March, 2002: All the code is now using STL. :)

References

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Engineer
United States United States
Jonathan de Halleux is Civil Engineer in Applied Mathematics. He finished his PhD in 2004 in the rainy country of Belgium. After 2 years in the Common Language Runtime (i.e. .net), he is now working at Microsoft Research on Pex (http://research.microsoft.com/pex).

Comments and Discussions

 
AnswerRe: How to fill the contour with color? Pin
Jonathan de Halleux17-Jul-02 22:13
Jonathan de Halleux17-Jul-02 22:13 
QuestionHow to fill the contour with color? Pin
Anonymous17-Jul-02 20:04
Anonymous17-Jul-02 20:04 
AnswerRe: How to fill the contour with color? Pin
Chris Maunder31-Jul-02 15:15
cofounderChris Maunder31-Jul-02 15:15 
GeneralGreat stuff Pin
Jonathan de Halleux31-Jul-02 22:06
Jonathan de Halleux31-Jul-02 22:06 
GeneralRe: Great stuff Pin
Chris Maunder31-Jul-02 22:28
cofounderChris Maunder31-Jul-02 22:28 
GeneralRe: Great stuff Pin
Terence Russell22-Sep-04 9:02
Terence Russell22-Sep-04 9:02 
Generalthank Pin
7-May-02 22:01
suss7-May-02 22:01 
GeneralThanks... Pin
Davide Onofrio10-Jan-02 22:30
Davide Onofrio10-Jan-02 22:30 
Really good Idea!
Would you like to extend the library on open source?Smile | :)
GeneralRe: Thanks... Pin
Jonathan de Halleux11-Jan-02 0:16
Jonathan de Halleux11-Jan-02 0:16 
GeneralUse STL... Pin
Paul Selormey10-Jan-02 21:04
Paul Selormey10-Jan-02 21:04 
GeneralRe: Use STL... Pin
Jonathan de Halleux10-Jan-02 21:47
Jonathan de Halleux10-Jan-02 21:47 
GeneralRe: Use STL... Pin
Jonathan de Halleux11-Jan-02 3:10
Jonathan de Halleux11-Jan-02 3:10 
GeneralRe: Use STL... Pin
Jonathan de Halleux4-Mar-02 4:31
Jonathan de Halleux4-Mar-02 4:31 
GeneralRe: Use STL... Pin
Paul Selormey4-Mar-02 13:11
Paul Selormey4-Mar-02 13:11 
GeneralRe: Use STL... Pin
Jonathan de Halleux4-Mar-02 22:22
Jonathan de Halleux4-Mar-02 22:22 
GeneralRe: Use STL... Pin
CSharpDavid1-Aug-02 6:01
CSharpDavid1-Aug-02 6:01 
GeneralRe: Use STL... Pin
Paul Selormey1-Aug-02 14:36
Paul Selormey1-Aug-02 14:36 

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.