How to Solve NameError: name 'cv2' is not defined -- cv2

Solution: Import the 'cv2' module

To Solve the error, add the following line to the top of your code.

from cv2 import cv2

 

For more information:
Python cv2 cv2