Geometrize 1.0
C++ library for geometrizing images into geometric primitives
shapejsonexporter.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6namespace geometrize
7{
8struct ShapeResult;
9}
10
11namespace geometrize
12{
13
14namespace exporter
15{
16
22std::string exportShapeJson(const std::vector<geometrize::ShapeResult>& data);
23
24}
25
26}
std::string exportShapeJson(const std::vector< geometrize::ShapeResult > &data)
exportShapeJson Exports shape data to JSON.
Definition: shapejsonexporter.cpp:19
Definition: bitmap.cpp:8