shapely.geometry最小外包矩形中心点
时间: 2023-05-12 13:05:43 浏览: 535
最小外接矩形
可以使用shapely.geometry.box函数来创建一个矩形对象,然后使用其centroid属性获取最小外包矩形的中心点。具体代码如下:
```python
from shapely.geometry import box
# 创建一个矩形对象
rect = box(0, 0, 2, 3)
# 获取最小外包矩形的中心点
center = rect.centroid
print(center) # POINT (1 1.5)
```
这里创建的矩形是左下角坐标为(0, 0),右上角坐标为(2, 3)的矩形,其最小外包矩形的中心点为(1, 1.5)。
阅读全文