I thought the quickest way to get opencv running in my environment would be as simple as.
sudo pip install opencv-python
It seemed to work properly, I could import
import cv2
img = cv2.imread("a.jpg", 0)
but any other functions as "cv2.SURF" or even "cv2.imshow" are not loaded. So the pip install is giving just a basic opencv?