python bytes转float
【摘要】
def Bytes2Float32Slice(self,feature):
x = []
with open("liwei.txt", "w") as f: ...
def Bytes2Float32Slice(self,feature):
x = []
with open("liwei.txt", "w") as f:
for i in range((len(feature)//4)):
data = feature[i * 4: (i * 4) + 4]
a = struct.unpack('f', data)
f.write(str(a))
x.append(float(a[0]))
#print(a,"----------------x-",x)
np.savetxt("hhh.csv" , x)
return x
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
'''
frombuffer将data以流的形式读入转化成ndarray对象
numpy.frombuffer(buffer, dtype=float, count=-1, offset=0)
buffer:缓冲区,它表示暴露缓冲区接口的对象。
dtype:代表返回的数据类型数组的数据类型。默认值为0。
count:代表返回的ndarray的长度。默认值为-1。
offset:偏移量,代表读取的起始位置。默认值为0。
'''
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
文章来源: blog.csdn.net,作者:IM-STONE,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/doubleintfloat/article/details/124139527
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)