Canny's Edge Detection

3 views (last 30 days)
Mohammed Farhan
Mohammed Farhan on 24 Feb 2014
Commented: Dmn on 25 Nov 2014
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(
  1 Comment
Dmn
Dmn on 25 Nov 2014
Why you need to do roundness calculation?

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 2 Mar 2014
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.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!