Image is not displaying in Google Colab while using imshow()
Found one workaround. We can use %matplotlib inline
in the code to use imshow. Used as example here in In[28] - link
Google colab crashes if you try to display image using cv2.imshow()
instead import from google.colab.patches import cv2_imshow
and display using cv2_imshow(<image>)