Geometrize 1.0
C++ library for geometrizing images into geometric primitives
shapearrayexporter.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
26std::string exportShapeArray(const std::vector<geometrize::ShapeResult>& data);
27
28}
29
30}
std::string exportShapeArray(const std::vector< geometrize::ShapeResult > &data)
exportShapeArray Exports shape data to a compact array-style format. Data is three lines per shape,...
Definition: shapearrayexporter.cpp:18
Definition: bitmap.cpp:8