Commit d1bb2055 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #16121 from shimat:fix_voronoi_typo

parents e47f3e5b b8958196
...@@ -1076,11 +1076,11 @@ public: ...@@ -1076,11 +1076,11 @@ public:
*/ */
CV_WRAP void getTriangleList(CV_OUT std::vector<Vec6f>& triangleList) const; CV_WRAP void getTriangleList(CV_OUT std::vector<Vec6f>& triangleList) const;
/** @brief Returns a list of all Voroni facets. /** @brief Returns a list of all Voronoi facets.
@param idx Vector of vertices IDs to consider. For all vertices you can pass empty vector. @param idx Vector of vertices IDs to consider. For all vertices you can pass empty vector.
@param facetList Output vector of the Voroni facets. @param facetList Output vector of the Voronoi facets.
@param facetCenters Output vector of the Voroni facets center points. @param facetCenters Output vector of the Voronoi facets center points.
*/ */
CV_WRAP void getVoronoiFacetList(const std::vector<int>& idx, CV_OUT std::vector<std::vector<Point2f> >& facetList, CV_WRAP void getVoronoiFacetList(const std::vector<int>& idx, CV_OUT std::vector<std::vector<Point2f> >& facetList,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment