a simple task simply does not work. Nothing on SO helps (e.g. this).
>>> import cv2
>>> img = cv2.imread("clouds.jpg")
>>> img
array([[[103, 75, 64],
[108, 80, 69],
[100, 72, 61],
...,
[ 88, 69, 62],
[ 79, 60, 47],
[ 75, 52, 37]]], dtype=uint8)
>>> cv2.imshow('window title', img)
>>> cv2.waitKey(1) # or 0, 10, 100, ...
Any idea what I'm missing? Thank you very much in advance.