matlabbe e6fcc961b8 Added DetectionInfo object for easier serialization/deserialization of the detection results.
Added filename property in json files
Added JsonWritter class for convenience

git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@369 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-08-04 01:33:52 +00:00

22 lines
318 B
C++

/*
* JsonWriter.h
*
* Created on: 2014-08-03
* Author: mathieu
*/
#ifndef JSONWRITER_H_
#define JSONWRITER_H_
#include "find_object/DetectionInfo.h"
class JsonWriter
{
public:
static bool available();
static void write(const DetectionInfo & info, const QString & path);
};
#endif /* JSONWRITER_H_ */