I use LiClipse
as my Python IDE. I imported two given skeletons in order to extend them (my first Python project). I created a PyDev project and dragged and dropped the files beneath the root of the project. The .py
file declares the following import statements:
import cv2
import numpy as np
import math
Every use of cv2
or np
results in an Undefined variable from input
. Is this question identical to How do I fix PyDev "Undefined variable from import" errors? (with a proposed solution of just ignoring the error in the IDE) or did I forget some settings?