python计算两个矩形的重叠,在Python中查找多个重叠矩形的相交区域

However, that algorithm only deals with finding the areas of only TWO overlapped rectangles.

How would I go on about finding the area of the intersection of say 3, or 4 or 5, etc number of overlapping rectangles, if I know the length, breadth of each rectangle?

解决方案

Shapely is a good library for stuff like this.

from shapely.geometry import box

# make some rectangles (for demonstration purposes and intersect with each other)

rect1 = box(0,0,5,2)

rect2 = box(0.5,0.5,3,3)

rect3 = box(1.5,1.5,4,6)

rect_list = [rect1, rect2, rect3]

# find intersection of rectangles (probably a more elegant way to do this)

for rect in rect_list[1:]:

rect1 = rect1.intersection(rect)

intersection = rect1

To visualize what's happening here. I plot the rectangles and their intersection:

from matplotlib import pyplot as plt

from matplotlib.collections import PatchCollection

from matplotlib.patches import Polygon

# plot the rectangles before and after merging

patches = PatchCollection([Polygon(a.exterior) for a in rect_list], facecolor='red', linewidth=.5, alpha=.5)

intersect_patch = PatchCollection([Polygon(intersection.exterior)], facecolor='red', linewidth=.5, alpha=.5)

# make figure

fig, ax = plt.subplots(1,2, subplot_kw=dict(aspect='equal'))

ax[0].add_collection(patches, autolim=True)

ax[0].autoscale_view()

ax[0].set_title('separate polygons')

ax[1].add_collection(intersect_patch, autolim=True)

ax[1].set_title('intersection = single polygon')

ax[1].set_xlim(ax[0].get_xlim())

ax[1].set_ylim(ax[0].get_ylim())

plt.show()

a982b8971a232ddc02916090cf7449cc.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值