AttributeError: 'DetectMultiBackend' object has no attribute 'input_details'
时间: 2023-07-31 18:05:06 浏览: 265
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常表示在 `DetectMultiBackend` 对象中没有名为 `input_details` 的属性。请确保你正确地初始化了 `DetectMultiBackend` 对象,并且在使用 `input_details` 属性之前对其进行了设置。如果你确定已经正确初始化了对象,那么可能是代码中其他地方出现了问题导致该属性无法访问。你可以检查代码中是否存在拼写错误或其他错误,以及确保该属性在对象中正确定义和设置。
阅读全文