Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个对象的轮廓..和一条线.. 对象正在移动..但线是恒定的.. 我想知道轮廓与线相交的点..
例如: - 以赛车为例,其中他们是终点线。 我有汽车和终点线的轮廓。 我想知道轮廓上与终点线相交的点。
将对象轮廓与线轮廓相交(使用numpy.logical_and( object_mask, line_mask )),结果图像非零的所有点都是相交点。
numpy.logical_and( object_mask, line_mask )