PyCharm is such a nice IDE for developing in Python. I really love it. However, with OpenCV module, I realized that PyCharm didn't recognize cv2 module.
After some search, here is a very simple solution! Credit goes to here.
When you import cv2, simply copy paste the whole thing below:
import cv2
# this is just to unconfuse pycharm
try:
from cv2 import cv2
except ImportError:
pass
That's it!
No comments:
Post a Comment