为什么python说cvzone.Classifier()有属性错误

Why does python say that there is an attribute error for cvzone.Classifier()

我正在尝试在 python 中进行对象识别,当我 运行 我的代码时出现此错误消息:

AttributeError: module 'cvzone' has no attribute 'Classifier'

这是我的代码:

import cvzone
import cv2

cap = cv2.VideoCapture(0)
myClassifier = cvzone.Classifier('converted_keras/keras_model.h5','converted_keras/labels.txt')

有人能帮忙吗?

1.5.4版本的cvzone中没有分类器这样的功能,所以尝试安装1.3.3版本的cvzone。 pip install cvzone==1.3.3.

试试这个

从cvzone.ClassificationModule导入分类器

然后

myClassifier = 分类器('converted_keras/keras_model.h5','converted_keras/labels.txt')