Commit 7a586538 authored by xolodilnik's avatar xolodilnik

fast_hough_transform.hpp: temporary replace CV_EXPORTS_W with CV_EXPORTS

parent b6a50e72
...@@ -130,12 +130,12 @@ typedef enum { ...@@ -130,12 +130,12 @@ typedef enum {
* The function calculates the fast Hough transform for full, half or quarter * The function calculates the fast Hough transform for full, half or quarter
* range of angles. * range of angles.
*/ */
CV_EXPORTS_W void FastHoughTransform( InputArray src, CV_EXPORTS void FastHoughTransform( InputArray src,
OutputArray dst, OutputArray dst,
int dstMatDepth, int dstMatDepth,
int angleRange = ARO_315_135, int angleRange = ARO_315_135,
int op = FHT_ADD, int op = FHT_ADD,
int makeSkew = HDO_DESKEW ); int makeSkew = HDO_DESKEW );
/** /**
* @brief Calculates coordinates of line segment corresponded by point in Hough space. * @brief Calculates coordinates of line segment corresponded by point in Hough space.
...@@ -152,11 +152,11 @@ CV_EXPORTS_W void FastHoughTransform( InputArray src, ...@@ -152,11 +152,11 @@ CV_EXPORTS_W void FastHoughTransform( InputArray src,
* *
* The function calculates coordinates of line segment corresponded by point in Hough space. * The function calculates coordinates of line segment corresponded by point in Hough space.
*/ */
CV_EXPORTS_W Vec4i HoughPoint2Line(const Point &houghPoint, CV_EXPORTS Vec4i HoughPoint2Line(const Point &houghPoint,
InputArray srcImgInfo, InputArray srcImgInfo,
int angleRange = ARO_315_135, int angleRange = ARO_315_135,
int makeSkew = HDO_DESKEW, int makeSkew = HDO_DESKEW,
int rules = RO_IGNORE_BORDERS ); int rules = RO_IGNORE_BORDERS );
} }// namespace cv::ximgproc } }// namespace cv::ximgproc
......
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