Maximum recursion limit of 500 reached. Use set(0,'RecursionLimit',N) to change the limit. Be aware that exceeding your available stack space can crash MATLAB and/or your computer."
1 回表示 (過去 30 日間)
古いコメントを表示
Maximum recursion limit of 500 reached. Use set(0,'RecursionLimit',N)
to change the limit. Be aware that exceeding your available stack space can
crash MATLAB and/or your computer."
This is the code
img = imread('coins.png');
imshow(img);
I=im2bw(img);
imgBW = edge(I);
rad = 24;
[y0detect,x0detect,Accumulator] = houghcircle(imgBW,rad,rad*pi);
figure;
imshow(imgBW);
hold on;
plot(x0detect(:),y0detect(:),'x','LineWidth',2,'Color','yellow');
figure;
imagesc(Accumulator);
回答 (1 件)
Walter Roberson
2012 年 1 月 19 日
What filename did you use for the above code? And which line does MATLAB indicate was executing at the time of the error?
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Optics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!