numpy
Shuai@
这个作者很懒,什么都没留下…
展开
-
h5py如何存储字符串
h5py如何存储字符串确定存储的数据类型,python3 vlen = str ,python 2 vlen=unicode。新建数据库后,明确数组的维度,传入类型,再赋值。dt = h5py.special_dtype(vlen=str)data = np.array([['str1'],['str2']])with h5py.File('mydata.h5','w') as f: ds = f.create_dataset('test_dict', data.shape , dtype原创 2021-07-23 16:25:51 · 964 阅读 · 0 评论 -
深度学习-图片数据的标准化数据处理流程
深度学习数据的标准化数据处理流程以下程序基于python编写数据的读入数据的取,可以使用skimage的io函数读取,也可以使用opencv-python来读取或者PIL读数据。- from skimage.io import imread- cv2.imread- PIL我个人推荐的顺序是使用cv2,skimage ,PILcv2 、skimage和 PIL中都集成了很多处理图像的函数注意:CV2读取的数据顺序是BGRskimagefrom skimage.io import i原创 2021-07-21 16:15:29 · 1134 阅读 · 1 评论 -
numpy改变数组类型的方法
使用astype函数转换dtypeimport numpy as npa = np.zeros([2,2],dtype='float32')print("a type is {}".format(a.dtype))b = a.astype(int)print("b is type {}".format(b.dtype))b = a.astype(np.float32)print("b is type {}".format(b.dtype))numpy.ndarray.astype输入的原创 2021-07-21 15:46:29 · 3631 阅读 · 0 评论