I am studying object detection using circular hough transform and I could not understand why this part of a code gives error "??? Undefined function or method 'circle_hough' for input arguments of type 'double'." Can you please figure out?
Ältere Kommentare anzeigen
>> I = imread ('RBC_5.png'); I2= rgb2gray(I); I3= histeq(I2); img= uint8(I3);
figure, imshow(I); figure, imshow(img);
e = edge(img, 'canny'); imshow(e);
radii = 15:1:40; h = circle_hough(e, radii, 'same', 'normalise'); ??? Undefined function or method 'circle_hough' for input arguments of type 'double'.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Hough Transform finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!