{1: [52896, 34525, 13422, 18945, 55787],
3: [66831, 32906, 44984, 18537, 51682],
6: [49239, 53087, 59521, 3221, 11184],
7: [6628, 30861, 15325, 64671, 51520],
0: [47524, 12454, 42290, 5301, 16277],
4: [48736, 6874, 49780, 25624, 25399],
2: [16923, 30581, 42236, 6380, 9681]}
This is a dictionary with images of classes 1,3,6,7,0,4 and 2. The list elements in every key represents the image index in an array called x_data, which is an array of images.
I am trying to find structural similarity between image within the same class as well as images from other classes.
((Like comparing Class 1, Index 52896 image with Class 1, Index 18945 and also comparing with Class 3, index 66831 and so on))
And I want to do this to every Image
For structural similarity, I have thought to use:
from skimage.metrics import structural_similarity as ssim
But how to do the python acrobatics for the statement in Bold. Please help.
You have to iterate through every class and within every class you will have to iterate through every id. Now since you want to compare this with every other image you will have to repeat this once again.
Output