|
|
@ -141,10 +141,10 @@ CV_EXPORTS_W void FastHoughTransform( InputArray src, |
|
|
|
* @brief Calculates coordinates of line segment corresponded by point in Hough space. |
|
|
|
* @brief Calculates coordinates of line segment corresponded by point in Hough space. |
|
|
|
* @param houghPoint Point in Hough space. |
|
|
|
* @param houghPoint Point in Hough space. |
|
|
|
* @param srcImgInfo The source (input) image of Hough transform. |
|
|
|
* @param srcImgInfo The source (input) image of Hough transform. |
|
|
|
* @param line Coordinates of line segment corresponded by point in Hough space. |
|
|
|
|
|
|
|
* @param angleRange The part of Hough space where point is situated, see cv::AngleRangeOption |
|
|
|
* @param angleRange The part of Hough space where point is situated, see cv::AngleRangeOption |
|
|
|
* @param makeSkew Specifies to do or not to do image skewing, see cv::HoughDeskewOption |
|
|
|
* @param makeSkew Specifies to do or not to do image skewing, see cv::HoughDeskewOption |
|
|
|
* @param rules Specifies strictness of line segment calculating, see cv::RulesOption |
|
|
|
* @param rules Specifies strictness of line segment calculating, see cv::RulesOption |
|
|
|
|
|
|
|
* @retval [Vec4i] Coordinates of line segment corresponded by point in Hough space. |
|
|
|
* @remarks If rules parameter set to RO_STRICT |
|
|
|
* @remarks If rules parameter set to RO_STRICT |
|
|
|
then returned line cut along the border of source image. |
|
|
|
then returned line cut along the border of source image. |
|
|
|
* @remarks If rules parameter set to RO_WEAK then in case of point, which belongs |
|
|
|
* @remarks If rules parameter set to RO_WEAK then in case of point, which belongs |
|
|
@ -152,9 +152,8 @@ 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 void HoughPoint2Line( const Point &houghPoint, |
|
|
|
CV_EXPORTS_W Vec4i HoughPoint2Line(const Point &houghPoint, |
|
|
|
InputArray srcImgInfo, |
|
|
|
InputArray srcImgInfo, |
|
|
|
Vec4i &line, |
|
|
|
|
|
|
|
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 ); |
|
|
|