edit
This commit is contained in:
parent
4aca699e13
commit
4fed55b427
6
main.py
6
main.py
|
@ -5,7 +5,7 @@ from datetime import datetime
|
||||||
recent=[]
|
recent=[]
|
||||||
history=[]
|
history=[]
|
||||||
width=720
|
width=720
|
||||||
height=100
|
height=50
|
||||||
red=(0x00,0x00,0xff)
|
red=(0x00,0x00,0xff)
|
||||||
orange=(0x00,0x66,0xff)
|
orange=(0x00,0x66,0xff)
|
||||||
yellow=(0x00,0xcc,0xff)
|
yellow=(0x00,0xcc,0xff)
|
||||||
|
@ -21,7 +21,7 @@ def update_history():
|
||||||
history.append(average)
|
history.append(average)
|
||||||
def fill(img,pos,color):
|
def fill(img,pos,color):
|
||||||
for i in range(5):
|
for i in range(5):
|
||||||
for j in range(100):
|
for j in range(height):
|
||||||
img[j,i+5*pos,:]=[color[0]%256,color[1]%256,color[2]%256]
|
img[j,i+5*pos,:]=[color[0]%256,color[1]%256,color[2]%256]
|
||||||
def update_graph():
|
def update_graph():
|
||||||
img=np.ones([height,width,3],dtype=np.uint8)
|
img=np.ones([height,width,3],dtype=np.uint8)
|
||||||
|
@ -36,7 +36,7 @@ def update_graph():
|
||||||
fill(img,i,light_green)
|
fill(img,i,light_green)
|
||||||
else:
|
else:
|
||||||
fill(img,i,green)
|
fill(img,i,green)
|
||||||
cv2.imwrite("image.bmp", img)
|
cv2.imwrite("image.png", img)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue