Skip to content

Commit 397b57d

Browse files
savuoralalek
authored andcommitted
Merge pull request opencv#10041 from savuor:RevHoughWorks
HoughCircles rewritten (PR opencv#7434 updated) (opencv#10041) * initial version of renewed HoughCircles done * fixed compilation * fixed SIMD ability & compilation warning * fixed accumulator nonmax comparison * common Mutex for all invokers * nzLocal is std::vector * nz is std::vector * SSE2 -> SIMD128 * centers is now std::vector * circles is std::vector * estimateRadius updated * accum calculation w/o mutex * less deprecated code * several bugs fixed * back to mutex, TLS gathering doesn't work * extra code removed * little refactoring * docs note updated * a little speedup * warning fixed
1 parent 438e456 commit 397b57d

File tree

2 files changed

+673
-319
lines changed

2 files changed

+673
-319
lines changed

modules/imgproc/include/opencv2/imgproc.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2090,7 +2090,7 @@ Example: :
20902090
20912091
@note Usually the function detects the centers of circles well. However, it may fail to find correct
20922092
radii. You can assist to the function by specifying the radius range ( minRadius and maxRadius ) if
2093-
you know it. Or, you may ignore the returned radius, use only the center, and find the correct
2093+
you know it. Or, you may set maxRadius to 0 to return centers only without radius search, and find the correct
20942094
radius using an additional procedure.
20952095
20962096
@param image 8-bit, single-channel, grayscale input image.

0 commit comments

Comments
 (0)