Traceback (most recent call last): File "D:/shiyan/2020/AICity-2020-CETCVLAB/normdetect.py", line 30, in <module> ret_img,detections = detector.detectCustomObjectsFromImage( custom_objects=custom, input_type="array",input_image=frame, output_type="array", minimum_percentage_probability=10) AttributeError: 'ObjectDetection' object has no attribute 'detectCustomObjectsFromImage'
时间: 2024-03-31 08:36:32 浏览: 36
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误提示表明在你的代码中使用了一个名为 `detectCustomObjectsFromImage` 的方法,但是 `ObjectDetection` 对象并没有这个方法。这可能是因为你的检测器对象的版本与你的代码中使用的版本不兼容,或者你的代码中有一些错误。你可以检查一下你的检测器对象的版本,并且查看一下它所支持的方法。或者你可以尝试更新你的检测器对象的版本,或者使用其他的方法进行目标检测。
阅读全文