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

Adds fitEllipseAMS to imgproc: The Approximate Mean Square (AMS) proposed by Taubin 1991.

Adds fitEllipseDirect to imgproc: The Direct least square (Direct) method by Fitzgibbon1999.

New Tests are included for the methods.
fitEllipseAMS Tests
fitEllipseDirect Tests

Comparative examples are added to fitEllipse.cpp in Samples.
This commit is contained in:
Jasper Shemilt
2017-10-02 16:38:41 +01:00
parent 49afb28738
commit 0136711cf4
8 changed files with 1592 additions and 39 deletions
@@ -16,6 +16,7 @@
//
//! @{
namespace cv {
namespace utils {
namespace logging {
@@ -77,7 +78,7 @@ enum LogLevel {
#endif
}} // namespace
}}} // namespace
//! @}