I have extracted an image object, now i need to determine the line of symmetry for that object

9 views (last 30 days)
Hi,
I have an object of which there is a symmetrical pattern, i want to plot a line of symmetry and then determine the array co-ordinates of the boundary point of the that line of symmetry. For example consider below:
How could i go about detecting the line of symmetry for the object?

Accepted Answer

Image Analyst
Image Analyst on 26 Apr 2017
Try the attached test.m file, below this image it creates.
  4 Comments
Optical_Stress
Optical_Stress on 26 Apr 2017
This images i produced were actually already ones with masked backgrounds, what i'd like to know from your results is how i can rotate the vertical line so i can check how well it passes through the original image.
I tried rotating the values by
slope = atand(orientation);
y = slope * (x - xCentroid) + yCentroid;
y=y*sind(slope); x=(x)*cosd(slope);
hold on;
plot(x, y, 'r-', 'LineWidth', 3);
but this did not work unfortunately, I have the equation of the circle, i want to use this to determine the intersection point with the straight line. I might just do it using imtool and hovering over the point if it doesn't work out.
Thanks though, you're input has been really helpful.
Image Analyst
Image Analyst on 26 Apr 2017
The line does not need to be rotated since it already goes through the main axis of the binary image. Like I said, if you don't like the overall binary image, you can get a different, smaller one to try to find just the stripes, and recompute the angles.

Sign in to comment.

More Answers (2)

Walter Roberson
Walter Roberson on 26 Apr 2017
data = double(YourImage);
dv = data(:);
try_it = @(ang) sum((reshape(fliplr(imrotate(data,ang,'crop')),[],1) - dv).^2)
A = linspace(0,359.9,500);
fitr = arrayfun(try_it, A);
[~,idx] = min(fitr);
best_ang = A(idx);
Note: what you posted was an object in a white frame. The YourImage I indicate above should have that white frame cropped away (e.g., should be the original image.)
The code here will work for grayscale and color both.
What this does is rotates an image by an angle, with cropping, flips it left to right, and finds the euclidean distance between that and the original. The hypothesis being tested is that there is an axis of reflective symmetry running though the center of the image and that it is just necessary to find the correct angle for it.
This will probably not do exactly what you want, in that your hypothesis probably involves an axis of reflective symmetry to does not run through the center of the image. You should be able to extend the technique to two parameters and evaluating at a grid of value pairs.
fmincon() cannot really optimize this, as it is not a continuous problem: small differences in rotation angles lead to the same output.
  1 Comment
Optical_Stress
Optical_Stress on 26 Apr 2017
Edited: Optical_Stress on 26 Apr 2017
Hi, thanks for your response. Could you explain a bit more regarding the code?
What is the Linspace part for?
I have just run the code, from what i've seen it seems to have just reflected the image about the center....?

Sign in to comment.


Image Analyst
Image Analyst on 26 Apr 2017
What if you threshold, then use bwconvhull() to get the convex hull of all blobs, then use regionprops to get the centroid and orientation angle?

Community Treasure Hunt

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

Start Hunting!