38 lines
1.3 KiB
C++
Executable File
38 lines
1.3 KiB
C++
Executable File
// This file is part of OpenCV project.
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
// of this distribution and at http://opencv.org/license.html.
|
|
|
|
#ifndef __OPENCV_FIND_ELLIPSES_HPP__
|
|
#define __OPENCV_FIND_ELLIPSES_HPP__
|
|
|
|
#include <opencv2/core.hpp>
|
|
|
|
namespace cv {
|
|
namespace ximgproc {
|
|
|
|
//! @addtogroup ximgproc
|
|
//! @{
|
|
|
|
/**
|
|
@brief Finds ellipses fastly in an image using projective invariant pruning.
|
|
*
|
|
* The function detects ellipses in images using projective invariant pruning.
|
|
* For more details about this implementation, please see @cite jia2017fast
|
|
* Jia, Qi et al, (2017).
|
|
* A Fast Ellipse Detector using Projective Invariant Pruning. IEEE Transactions on Image Processing.
|
|
*
|
|
@param image input image, could be gray or color.
|
|
@param ellipses output vector of found ellipses. each vector is encoded as five float $x, y, a, b, radius, score$.
|
|
@param scoreThreshold float, the threshold of ellipse score.
|
|
@param reliabilityThreshold float, the threshold of reliability.
|
|
@param centerDistanceThreshold float, the threshold of center distance.
|
|
*/
|
|
CV_EXPORTS_W void findEllipses(
|
|
InputArray image, OutputArray ellipses,
|
|
float scoreThreshold = 0.7f, float reliabilityThreshold = 0.5f,
|
|
float centerDistanceThreshold = 0.05f
|
|
);
|
|
//! @} ximgproc
|
|
}
|
|
}
|
|
#endif |