diff --git a/A2/histogram.py b/A2/histogram.py index 230623b5471bbab26bcea25ff30092f06af0469f..8684691cc724183a247bc9a2fed189e0d5a29ce4 100644 --- a/A2/histogram.py +++ b/A2/histogram.py @@ -113,6 +113,7 @@ class Histogram(object): """ image = imageio.imread(uri=self.image_path) plt.imshow(image) + plt.show() grey_scale_image = color.rgb2gray(image) # convert greyscale to interval diff --git a/A2/images/histogram.jpeg b/A2/images/histogram.jpeg index 1541807cb412ae7d356f9d47c771aa140b814925..cae11860315ace19a7679107685dbe50a63e59ce 100644 Binary files a/A2/images/histogram.jpeg and b/A2/images/histogram.jpeg differ