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?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Daddydeno
el 28 de Jun. de 2017
Comentada: Daddydeno
el 29 de Jun. de 2017
>> 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'.
0 comentarios
Respuesta aceptada
Swarooph
el 28 de Jun. de 2017
circle_hough doesn't seem like a MathWorks developed function. There is a file exchange entry you might want to download to access it. Its here. FWIW the built in Image processing Toolbox function to find circles using hough is imfindcircles.
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!