def show_image(self):
"""
Method to plot the image and attributes.
Input: None
Output: None
"""
print self.__str__()
sns.set_style("whitegrid", {'axes.grid': False})
plt.imshow(self.image)
plt.show()