print(hori_translation.numpy()) AttributeError: 'numpy.ndarray' object has no attribute 'numpy'
时间: 2023-11-24 20:52:14 浏览: 153
Cura15.04.2_for_HORI3D
根据提供的引用内容,可以看出在代码中使用了`hori_translation.numpy()`,但是出现了`AttributeError: 'numpy.ndarray' object has no attribute 'numpy'`的错误。这是因为`hori_translation`已经是一个`numpy.ndarray`类型的对象,不需要再次调用`numpy()`方法。
因此,正确的代码应该是:
```python
print(hori_translation)
```
阅读全文