1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Added getLeadingEdges function to subdivision2d

This commit is contained in:
Graham Fyffe
2016-10-06 18:01:34 -07:00
parent dd379ec9fd
commit 57be99ff18
2 changed files with 28 additions and 0 deletions
@@ -1012,6 +1012,14 @@ public:
*/
CV_WRAP void getEdgeList(CV_OUT std::vector<Vec4f>& edgeList) const;
/** @brief Returns a list of the leading edge ID connected to each triangle.
@param leadingEdgeList Output vector.
The function gives one edge ID for each triangle.
*/
CV_WRAP void getLeadingEdgeList(CV_OUT std::vector<int>& leadingEdgeList) const;
/** @brief Returns a list of all triangles.
@param triangleList Output vector.