1 Star 1 Fork 0

徐瑞骏/ultrasound_scan_pc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
polar.py 556 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/python3
from rx import UsRx
import matplotlib.pyplot as plt
import numpy as np
t = 5e-6
if __name__ == '__main__':
fig = plt.figure()
ax = fig.add_subplot(111, polar=True)
θ = np.linspace(0, 2*np.pi, 64)
ρ = np.arange(4096)*(t/2*340)
data = np.zeros((64, 4096))
i = 0
rx = UsRx()
rx.start()
while True:
ax.cla()
data[i] = rx.queue.get()
ax.pcolormesh(θ, ρ[:2000], data.transpose()[:2000], shading='auto', vmin=0, vmax=200)
i = (i+rx.rot//32)%64
plt.pause(0.01)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xu-ruijun/ultrasound_scan_pc.git
[email protected]:xu-ruijun/ultrasound_scan_pc.git
xu-ruijun
ultrasound_scan_pc
ultrasound_scan_pc
master

搜索帮助