Img2Num C++ (Internal Developer Docs) dev
API Documentation
Loading...
Searching...
No Matches
bezier.h
1#ifndef BEZIER_H
2#define BEZIER_H
3
4#include "internal/contours.h"
5
6void fit_curve_reduction(const std::vector<std::vector<Point>> &chains,
7 std::vector<std::vector<QuadBezier>> &results, float tolerance);
8#endif