Img2Num C++ (Internal Developer Docs) dev
API Documentation
Loading...
Searching...
No Matches
douglas_peucker.h
1#ifndef DOUGLAS_PEUCKER_H
2#define DOUGLAS_PEUCKER_H
3
4#include "internal/contours.h"
5
6#include <cstdint>
7#include <vector>
8
26void dp_curve_reduction(
27 const std::vector<std::vector<Point>>& chains, const std::vector<std::vector<uint8_t>>& fixed,
28 std::vector<std::vector<QuadBezier>>& results, float eps
29);
30
31#endif