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-27 13:42:06 浏览: 74
rich-traceback:Python 日志记录模块的信息回溯
这是一个Python代码的错误提示信息。其中,'ObjectDetection' object has no attribute 'detectCustomObjectsFromImage' 表示在 ObjectDetection 类中没有 detectCustomObjectsFromImage 这个属性或方法。可能是你引用的库版本过低,或者是代码中写错了方法名。建议你检查代码和库的版本,或者参考库的文档来正确使用该方法。
阅读全文