Fixed duplicate declaration issue in Swift/ObjC bindings.

This commit is contained in:
Alexander Smorkalov 2025-08-18 09:57:13 +03:00
parent eab6d5741a
commit 0b84a54a65

View File

@ -1113,7 +1113,7 @@ public:
CV_WRAP Subdiv2D(Rect rect); CV_WRAP Subdiv2D(Rect rect);
/** @overload */ /** @overload */
CV_WRAP Subdiv2D(Rect2f rect); CV_WRAP_AS(Subdiv2D2f) Subdiv2D(Rect2f rect);
/** @overload /** @overload
@ -1131,7 +1131,7 @@ public:
@param rect Rectangle that includes all of the 2d points that are to be added to the subdivision. @param rect Rectangle that includes all of the 2d points that are to be added to the subdivision.
*/ */
CV_WRAP void initDelaunay(Rect2f rect); CV_WRAP_AS(initDelaunay2f) CV_WRAP void initDelaunay(Rect2f rect);
/** @brief Insert a single point into a Delaunay triangulation. /** @brief Insert a single point into a Delaunay triangulation.