gpt4 book ai didi

python - 如何使用python获取矩阵中某个值周围框的左上角和右下角坐标?

转载 作者:太空宇宙 更新时间:2023-11-04 10:58:54 26 4
gpt4 key购买 nike

我有一个二维 numpy 数组。让我们考虑以下示例

    [[0,6,89,255,1,6,7]
[0,255,89,255,1,1,7]
[255,255,255,255,255,255,255]
[1,2,3,4,5,6,7]
[1,1,255,5,7,3,255]]

我们需要围绕某个值的框的坐标。例如,对于值 255,值 255 周围框的坐标将在左上角 (0,0) 和右下角 (4,6)。

如何在 python 中高效地完成它。

非常感谢。

最佳答案

答案非常类似于:Is there a "bounding box" function (slice with non-zero values) for a ndarray in NumPy?

from numpy import array, argwhere

A = array([[0 ,6 ,89 ,255,1 ,6 ,7 ],
[0 ,255,89 ,255,1 ,1 ,7 ],
[255,255,255,255,255,255,255],
[1 ,2 ,3 ,4 ,5 ,6 ,7 ],
[1 ,1 ,255,5 ,7 ,3 ,255]])

B = argwhere(A==255)
(ystart, xstart), (ystop, xstop) = B.min(0), B.max(0)

关于python - 如何使用python获取矩阵中某个值周围框的左上角和右下角坐标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7347101/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com