Canny's Edge Detection
11 ビュー (過去 30 日間)
古いコメントを表示
hello, canny edge detection is used to get the edges, but this paper says how to calculate roundness. is there any relation between canny edge and roundness please help!!!!
"Canny edge detection is performed on the resulting image from the previous section. Each object's area and perimeter is calculated and these results are used to form a simple metric indicating the roundness of an object. The perimeter is calculated by finding the length of the boundary pixels of the candidate. In calculating perimeter, the x and y coordinates are counted as one and diagonal neighbours are counted √2 times.
delta = diff(boundary).^2;
perimeter =sum(
採用された回答
Image Analyst
2014 年 3 月 2 日
Calculate the circularity:
measurements = regionprops(labeledImage, 'area', 'Perimeter');
allAreas = [measurements.Area];
appPerimeters = [measurements.Perimeter];
circularities = appPerimeters .^2 ./ (4*pi*allAreas);
If it's round, the circularity will be below 2-3 or so. For a perfect circle the circularity is 1. Higher values will be for less round objects with more tortuous borders.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!