A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/opencv/opencv/issues/27377 below:

Add HoughCirclesWithAccumulator() binding · Issue #27377 · opencv/opencv · GitHub

Describe the feature and motivation

HoughLinesWithAccumulator() exists:

/** @brief Finds lines in a binary image using the standard Hough transform and get accumulator. * * @note This function is for bindings use only. Use original function in C++ code * * @sa HoughLines */ CV_WRAP static inline void HoughLinesWithAccumulator( InputArray image, OutputArray lines, double rho, double theta, int threshold, double srn = 0, double stn = 0, double min_theta = 0, double max_theta = CV_PI ) { std::vector<Vec3f> lines_acc; HoughLines(image, lines_acc, rho, theta, threshold, srn, stn, min_theta, max_theta); Mat(lines_acc).copyTo(lines); }

Why not HoughCirclesWithAccumulator() too? Would be just as useful, but now for circles!

Additional context

No response


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4