Python 为图像创建两个三变量列表

问题描述 投票:0回答:0

我在收集资料:

  ads.mode = ADS.Mode.SINGLE

  chan = AnalogIn(ads, ADS.P0, ADS.P1)
 
  buffer = []

  buffer.append(chan.value) # I'm collecting chan values in the buffer 

当chan的数量达到

144
值时,我想创建
.tiff
大小的图像,其中
2P = 12
2Q = 12
(12*12给出144)和后续的chan值按照显示的顺序写入图中的箭头:

对于在 python 中使用数组的人来说,这个问题看起来很简单。 我将非常感谢你的帮助。

python arrays sorting image-processing multidimensional-array
© www.soinside.com 2019 - 2024. All rights reserved.