hough 变换检测圆的 matlab 程序 1hough 变换检测圆的 matlab 程序 1 function [y0detect, x0detect, Accumulator] = houghcircle(Imbinary, r, thresh) %HOUGHCIRCLEdetects circles with specific radius in a binary image
% %Comments: % Function uses Standard Hough Transform to detect circles in a binary image
% According to the Hough Transform for circles, each pixel in image space % corresponds to a circle in Hough space and vise versa
% upper left corner of image is the origin of coordinate system
% %Usage: [y0detect, x0detect, Accumulator] = houghcircle(Imbinary, r, thresh) % %Arguments: % Imbinarya binary image
image pixels that have value equal to 1 are % interested pixels for HOUGHLINE function
% rradius of circles
% thresha threshold value that determines the minimum number of % pixels that belong to a