openmv的函数rotation()
时间: 2023-08-03 12:26:56 浏览: 156
相机传感器-从一元一次方程到伽罗瓦理论
OpenMV的`rotation()`函数是一个图像旋转函数,它可以将图像按照指定的角度进行旋转。该函数的参数包括旋转角度和旋转中心点坐标。例如,以下代码将图像按照中心点逆时针旋转90度:
```python
import sensor, image
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QVGA)
# 拍摄一张图像
img = sensor.snapshot()
# 将图像逆时针旋转90度
img.rotation_corr(90, (img.width()//2, img.height()//2))
# 显示旋转后的图像
img.show()
```
阅读全文