我看了一个教程,该教程是用Python编写的关于OpenCV的。当我尝试导入类时遇到错误。错误如下。
Traceback (most recent call last):
File "webstreaming.py", line 1, in <module>
from pyimagesearch.motion_detection import SingleMotionDetector
ImportError: cannot import name 'SingleMotionDetector' from 'pyimagesearch.motion_detection' (/home/pi/Desktop/Denemeler/pyimagesearch/motion_detection/__init__.py)
这是我的目录树。
.
├── pyimagesearch
│ ├── __init__.py
│ └── motion_detection
│ ├── __init__.py
│ └── singlemotiondetector.py
├── templates
│ └── index.html
└── webstreaming.py
我检查了堆栈溢出,但没有一个答案对我有用。谢谢。
慕标5832272
相关分类