在热成像实验中,如何用64*64的float数组,代替官方例程中的ir数组来生成图像?并叠加到摄像头?
-
if not ALT_OVERLAY:
# Scale the image and belnd it with the framebuffer
fir.draw_ir(img,ir)
else:
# Create a secondary image and then blend into the frame buffer.
extra_fb.clear()
fir.draw_ir(extra_fb, ir, alpha=256)
img.blend(extra_fb, alpha=128)
-
什么意思?没看懂,你具体要做什么?