Я смотрел учебник, который был закодирован в 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
Я проверил stackoverflow, но ни один из ответов не сработал для меня. Спасибо.