vote up 2 vote down star

I often write code that renders images by writing pixels directly into buffers and I often find it hard to get a good overview of what's really going on. The Memory window in Visual Studio's debugger is somewhat a help, but I'd really love to see the images graphically.

So my question is, does anyone know of a debugging extension that can read a chunk of memory as a picture in a specified pixel format and display it graphically?

flag

5 Answers

vote up 2 vote down check

Such a thing exists:

A utility for simple printf-style debugging of images in Win32 C/C++ applications.

http://billbaxter.com/projects/imdebug/

My coworker raves about it.

--chris

link|flag
vote up 0 vote down

You can use OpenCV quite easily to display images straight from your buffer. It's quite easy to install for Visual Studio with precompiled binaries (or you can do it yourself easily with CMake) and using it is trivial in most cases. For example, suppose you had the following image in memory which you generated somehow.

Circle

You can use OpenCV tools to access user-allocated data directly (copying). So, I'm just displaying the image now but there's a host of other things you can do (it's OpenCV!).

The following codes generates an image of a circle of diameter 200 in a square of size 300. The data has been stored in row-major order since that's how OpenCV reads them.

#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
using namespace cv;

int main(int argc, char* argv[])
{
    // Create the matrix
    const int rows = 300, cols = 300;
    unsigned char *data = new unsigned char[rows*cols];

    // Make a dummy image of a circle of radius 100 in the matrix
    const int r = 100, center_i = rows/2, center_j = cols/2;
    const int BKG = 0, CIRC = 255;
    unsigned char* ptr = data;
    for(int i=0;i<rows;++i)	
    	for(int j=0;j<cols;++j)		
    	{
    		bool isInOnCirc = ((i-center_i)*(i-center_i)+ (j-center_j)*(j-center_j) <= r*r);
    		if(isInOnCirc) *ptr++= CIRC;
    		else *ptr++ = BKG;	
    	}

    // Create a cv::Mat on top of the user-allocated data
    // CV_8UC1 = 8-bit unsigned char with one channel (layer)
    Mat img(rows,cols,CV_8UC1,data);
    namedWindow("Image",CV_WINDOW_AUTOSIZE);
    imshow("Image",img);
    waitKey();
    // Cleanup
    delete data;		
    return 0;
}
link|flag
I thought I was clear enough that my problem wasn't displaying the images at some point, my problem is that I want to display the images while I single-step through the code inside the debugger and want to see how my write pointer moves around. I am after an extension to the debugger that shows what my code does as I step through it. – nielsm Oct 14 at 12:19
vote up 0 vote down
  1. Create a class containing your buffer + metadata (width, height, stride, pixelformat).
  2. Add ToStream() and FromStream() methods to your class for (de)serializing image (buffer and metadata).
  3. Add a ToWpfBitmapSource() to your class.
  4. Create a debug visualizer that deserializes your image from the stream, converts to WPF's BitmapSource, places in an Image control, within a Winforms WPF host.

This example will help: http://www.codeproject.com/KB/WPF/WPF%5FGlimps.aspx

The class can be added in C++ CLI in a seperate DLL.

link|flag
vote up 0 vote down

A colleague of mine wrote this CodeProject article for writing Debugger Visualizers

http://www.codeproject.com/KB/showcase/BuildDebuggerVisualizer.aspx

It uses our product, a .NET imaging toolkit, but it could easily be adapted to use .NET image classes instead.

link|flag
vote up 0 vote down

What you're asking for is not naturally achieveable in native c++. All the visualization technology inside the visual debugger is organized around the CLR, hence either C# or C++/CLI.

The one thing that can help in native land is the expression evaluator addin mechanism. Of course, it's designed to return a string and go away, but it's code, so you could in theory run any code, including displaying a window and showing the data you care about (after having read it from the debuggee).

It's a bit of a bummer to see those great features missing from the native side, though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.