是否存在“边界框”? NumPy 中 ndarray 的函数(非零值切片)?
我正在处理通过 numpy.array() 创建的数组,我需要在模拟图像的画布上绘制点。由于包含有意义数据的数组中心部分周围有很多零值,因此我想“修剪”数组,删除仅包含零的列和仅包含零的行。
所以,我想知道一些本机 numpy 函数,甚至是一个代码片段来“修剪”或找到一个“边界框”来仅切片数组中包含数据的部分。
(因为这是一个概念性问题,所以我没有放置任何代码,如果我应该的话,抱歉,我很新鲜地在 SO 上发帖。)
感谢您的阅读
I am dealing with arrays created via numpy.array(), and I need to draw points on a canvas simulating an image. Since there is a lot of zero values around the central part of the array which contains the meaningful data, I would like to "trim" the array, erasing columns that only contain zeros and rows that only contain zeros.
So, I would like to know of some native numpy function or even a code snippet to "trim" or find a "bounding box" to slice only the data-containing part of the array.
(since it is a conceptual question, I did not put any code, sorry if I should, I'm very fresh to posting at SO.)
Thanks for reading
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该可以做到:
This should do it:
下面的代码来自 这个答案 在我的测试中运行速度最快:
使用 < 的接受答案code>argwhere 可以工作,但运行速度较慢。我的猜测是,这是因为 argwhere 分配了一个巨大的索引输出数组。我在大型 2D 阵列(1024 x 1024 图像,大约有 50x100 非零区域)上进行了测试。
The code below, from this answer runs fastest in my tests:
The accepted answer using
argwhere
worked but ran slower. My guess is, it's becauseargwhere
allocates a giant output array of indices. I tested on a large 2D array (a 1024 x 1024 image, with roughly a 50x100 nonzero region).类似于:
生成的数组将是一维布尔数组。从两端循环它们以找到“边界框”。
Something like:
The resulting arrays will be 1D boolian arrays. Loop on them from both ends to find the 'bounding box'.