When writing Python code using compiled extensions (the OpenCV Python bindings, for example), PyCharm doesn\'t seem to be aware of their availability. The imports are marked
I have noticed a difference in pycharm behavior depending on the way to import. using:
import cv2
the auto completion doesn't work,
while with:
from cv2 import cv2
auto completion works