在Python中通过threshold创建mask方式

Xena ·
更新时间:2024-11-13
· 907 次阅读

我就废话不多说了,直接上代码吧!

【code】

import numpy as np threshold=2 a=np.array([[1,2,3],[3,4,5]]) b=a>threshold print("a="+str(a)) print("b="+str(b))

【result】

a=[[1 2 3] [3 4 5]] b=[[False False True] [ True True True]]

以上这篇在Python中通过threshold创建mask方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持软件开发网。

您可能感兴趣的文章:python实现根据给定坐标点生成多边形mask的例子python_mask_array的用法Pytorch mask_select 函数的用法详解Numpy中的mask的使用浅谈图像处理中掩膜(mask)的意义



在python中 mask threshold Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号