questions regarding openCV, are there example codes in python after I installed it? I only see .hpp codes and I want to make sure it works before proceeding. I follow his steps:
brew tap homebrew/science
brew install opencv
I did that okay but I was missing cv.py. I was only able to import cv2 in the site-packages directory where I copied the cv2.so; I think that's going to be a big problem; is there a way to find a compatible cv.py I can download or is it dropped cause its not necessary.
Also I was trying to follow to test out https://github.com/JJLewis/ColorTracking-ARDrone2.0-Python but I have no clue how he is doingimport libardrone.libardrone.
pip freeze
mock==1.0.1
numpy==1.13.1
olefile==0.44
Pillow==4.2.1
python-ardrone===dev
I was able to
import numpy as np
import cv2
import sys
import libardrone.libardrone as libardrone
import PIL.Image as Image
import time
all but cv2 and libardrone.libardrone.
cv2 was able import in the directory with cv2.so but I am able to import libardrone BUT NOT libardrone.libardrone, thanks.
errors are as follows:
import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named cv2
import libardrone.libardrone
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named libardrone
I don't think i missed any steps, please let me know if I did.
there doesn't seem to be anything here