diff --git a/imageViewer.py b/imageViewer.py index db1c1b3..58740e5 100644 --- a/imageViewer.py +++ b/imageViewer.py @@ -118,6 +118,7 @@ cv2.destroyAllWindows() case "-verImg-": image = np.load(Path(vals["-Path-"])) if vals["-NP_Array_IMG-"] else cv2.imread(vals["-Path-"], cv2.IMREAD_COLOR) + print (image.shape) cv2.namedWindow("Output", cv2.WINDOW_NORMAL) cv2.resizeWindow("Output", (1024, 720)) cv2.imshow("Output", image)