Error: this statement is incomplete

2 ビュー (過去 30 日間)
angelo covarrubias
angelo covarrubias 2019 年 11 月 15 日
コメント済み: angelo covarrubias 2019 年 11 月 15 日
img=imread('circulos.jpg');
imshow(img);
d = imdistline;
delete(d)
imgbn=rgb2gray(img);
imshow(imgbn);
[centers,radii] = imfindcircles(imgbn,[30 70],'ObjectPolarity','dark',...'Sensitivity',0.9)

採用された回答

Walter Roberson
Walter Roberson 2019 年 11 月 15 日
The ... immediately marks end of line. Anything after it is a comment. So you are missing the )
You should split into two lines:
[centers,radii] = imfindcircles(imgbn,[30 70],'ObjectPolarity','dark',...
'Sensitivity',0.9);
  1 件のコメント
angelo covarrubias
angelo covarrubias 2019 年 11 月 15 日
thanks you!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by