I am working on a project which requires functions from OpenCV to plot images. I am trying to display image using the below code in Google Colab. But nothing shows up in the
Instead of using cv2.imshow() try this:
cv2.imshow()
from google.colab.patches import cv2_imshow
cv2_imshow()
I tried it and it worked for me.