最快的3D到2D投影

最快的3D到2D投影,第1张

最快的3D到2D投影

您可以如下计算

>>> data = np.random.random_sample((200, 300, 100)) > 0.5>>> data.any(axis=-1).shape # show the result has the shape we want(200, 300)>>> data.any(axis=-1)array([[ True,  True,  True, ...,  True,  True,  True],       [ True,  True,  True, ...,  True,  True,  True],       [ True,  True,  True, ...,  True,  True,  True],       ...,       [ True,  True,  True, ...,  True,  True,  True],       [ True,  True,  True, ...,  True,  True,  True],       [ True,  True,  True, ...,  True,  True,  True]], dtype=bool)>>>

您可以根据需要缩放

>>> data.any(axis=-1) * 255array([[255, 255, 255, ..., 255, 255, 255],       [255, 255, 255, ..., 255, 255, 255],       [255, 255, 255, ..., 255, 255, 255],       ...,       [255, 255, 255, ..., 255, 255, 255],       [255, 255, 255, ..., 255, 255, 255],       [255, 255, 255, ..., 255, 255, 255]])>>>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5631352.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存