Error: this statement is incomplete
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
angelo covarrubias
am 15 Nov. 2019
Kommentiert: angelo covarrubias
am 15 Nov. 2019
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)
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 15 Nov. 2019
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);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!