Pratically solved No module named cv2.aruco
Last updated on:2 years ago
Dave met this problem when trying to recognize traffic light. Importing python function failed. To solve the problem,try install opencv-contrib-python. Someone said that aruco is not in opencv-python, but in opencv-contrib-python.
Solutions
For python2
pip install --upgrade pip
pip install opencv-contrib-python
For python3
pip3 install --upgrade pip
pip3 install opencv-contrib-python
Reference
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!