imfindcircles関数はハフ変換のアルゴリズムを用いて円を推定しており、アルゴリズムの計算上、以下のように、推定した中心座標や半径は実数値で出力されます。
A = imread('coins.png');
imshow(A);
[centers, radii] = imfindcircles(A,[15 30])
viscircles(centers, radii,'EdgeColor','b');
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!