From d5ca16a4edce388a839e2a5d5b6cb2f6a0278425 Mon Sep 17 00:00:00 2001 From: lukas-heiligenbrunner Date: Fri, 29 Apr 2022 12:32:04 +0200 Subject: [PATCH] little code cleanup --- ex3.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ex3.py b/ex3.py index 6929502..56379b8 100644 --- a/ex3.py +++ b/ex3.py @@ -1,3 +1,9 @@ +""" +Author: Lukas Heiligenbrunner +Matr.Nr.: K12104785 +Exercise 3 +""" + import os.path from glob import glob @@ -57,7 +63,6 @@ class ImageStandardizer: yield np.array(arr, dtype=np.float32) -# Press the green button in the gutter to run the script. if __name__ == '__main__': std = ImageStandardizer(input_dir='unittest/unittest_input_0') print(std.analyze_images())