Framework/tool for processing C++ unit tests with numerical output

Posted by David Claridge on Stack Overflow See other posts from Stack Overflow or by David Claridge
Published on 2011-01-05T02:51:05Z Indexed on 2011/01/05 2:53 UTC
Read the original article Hit count: 177

Hi, I am working on a C++ application that uses computer vision techniques to identify various types of objects in a sequence of images. The (1000+) images have been hand-classified, so we have an XML file for each image containing a description of where the objects are actually located in the images.

I would like to know if there is a testing framework that can understand/graph results from tests that are numeric, in this case some measure of the error in the program's classification of the images, rather than just pass/fail style unit tests.

We would like to use something like CDash/CTest for running these automated tests, and viewing over time how improvements to the vision algorithms are causing the images to be more correctly classified.

Does anyone know of a tool/framework that can do this?

© Stack Overflow or respective owner

Related posts about c++

Related posts about unit-testing