Hello,
how can I decide that an image is symmetric or asymmetric in color after dividing it into two parts vertically (the right part and the left part)? thanks
You could chop the image in half, call fliplr() to flip one of the halves, then check similarity with SSIM (See wikipedia) or something similar like PSNR.
I'm working on a large number of images with different colors. I want to calculate the score of asymmetry in color, texture and shape.
Examples of images after a segmentation step:
symmetric http://s11.postimage.org/5t2rws3/tachymmetric.jpg
asymmetric http://s9.postimage.org/xorjshb/tachsymmetric.jpg
It's a lot easier to just get the solidity. Will that work for you? For the two example you gave, solidity would work well for distinguishing between the two.
I couldn't understand what do you mean by 'solidity'. But I will try to explain again: I want to take for example the first image and measure its score of asymmetry. This score should be between 0 and 1. I'm looking for a method to do this. So I'm asking for ssim if it can helps me.
0 Comments