gpt4 book ai didi

Python 一种用不同数据类型屏蔽两个数组的方法(单元 8 和 uint16)

转载 作者:行者123 更新时间:2023-11-28 22:01:13 24 4
gpt4 key购买 nike

我有两个数组:

掩码:值为 0 和 1,dtype=uint8

>>> mask
array([[0, 0, 0, ..., 0, 0, 0],
[0, 0, 0, ..., 0, 0, 0],
[1, 1, 1, ..., 0, 0, 0],
...,
[1, 1, 1, ..., 0, 0, 0],
[0, 0, 0, ..., 0, 0, 0],
[0, 0, 0, ..., 0, 0, 0]], dtype=uint8)

和 prova_clip

>>> prova_clip
array([[289, 281, 271, ..., 257, 255, 255],
[290, 284, 268, ..., 260, 260, 259],
[294, 283, 264, ..., 265, 263, 257],
...,
[360, 359, 360, ..., 335, 338, 331],
[359, 364, 369, ..., 337, 342, 339],
[358, 363, 368, ..., 332, 331, 332]], dtype=uint16)

我想用一种代码保存的方法用mask来屏蔽prova_clip,以便拥有

array([[0, 0, 0, ..., 0, 0, 0],
[0, 0, 0, ..., 0, 0, 0],
[294, 283, 264, ..., 0, 0, 0],
...,
[360, 359, 360, ..., 0, 0, 0],
[0, 0, 0, ..., 0, 0, 0],
[0, 0, 0, ..., 0, 0, 0]], dtype=uint16)

最佳答案

我错过了什么吗?这看起来很简单:

prova_clip*mask

这是一个例子:

>>> a = np.arange(10,dtype=np.uint16)
>>> mask = np.ones(10,dtype=np.uint8)
>>> mask[1:3] = 0
>>> a*mask
array([0, 0, 0, 3, 4, 5, 6, 7, 8, 9], dtype=uint16)

您也可以采用复杂的方式来修改数组。

>>> b = np.arange(10,dypte=np.uint16)
>>> b[~mask.astype(bool)] = 0
>>> b
array([0, 0, 0, 3, 4, 5, 6, 7, 8, 9], dtype=uint16)

最后是numpy.where:

>>> c = np.arange(10,dtype=np.uint8)
>>> np.where(mask==0,0,c)
array([0, 0, 0, 3, 4, 5, 6, 7, 8, 9], dtype=uint16)

关于Python 一种用不同数据类型屏蔽两个数组的方法(单元 8 和 uint16),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13424330/

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