measure diameter of circle
이전 댓글 표시
Hi, I have project to measure diameter of microbubble. I succeed to detect circle but have no idea to measure diameter. the example is like below

댓글 수: 2
KSSV
2017년 8월 24일
In the above bar plot..xaxis is diameter....already you have the diameters in hand....and when you get circles..it comes with radius or diameter information...
Adam
2017년 8월 24일
Surely if you have already detected the circles it isn't hard to get their diameters? What format do you have the detected circles in?
답변 (1개)
dbmn
2017년 8월 24일
As KSSV and Adam suggested, you should already have most Information readily available when you were able to detect the circles (circles are usually characterized by a parameter for center and radius).
A = imread('coins.png');
imshow(A)
[centers, radii, metric] = imfindcircles(A,[15 30]);
viscircles(centersStrong5, radiiStrong5,'EdgeColor','b');
카테고리
도움말 센터 및 File Exchange에서 Hough Transform에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!