31_training_deploy_model.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. #!/usr/bin/env python
  2. #version : 2023.12.31
  3. #language : ch
  4. from maix import camera, display, zbar, image
  5. import socket
  6. import os
  7. import sys
  8. sys.path.append('/root/')
  9. import http.client
  10. from CocoPi import BUTTON
  11. import time
  12. import json
  13. import requests
  14. import os
  15. ScreenOrientation = False
  16. try:
  17. if os.path.exists("/etc/cameraSize.cfg"):
  18. cameraSize = True
  19. else:
  20. cameraSize = False
  21. except:
  22. cameraSize = False
  23. def getLcdRotation(cameraCapture):
  24. global cameraSize
  25. if cameraSize:
  26. return lcdRotationNew(cameraCapture)
  27. else:
  28. return lcdRotation(cameraCapture)
  29. def lcdRotationNew(inputImg):
  30. global cameraSize,ScreenOrientation
  31. imageRotationBuffer = inputImg.crop(0, 0, 320, 240)
  32. if ScreenOrientation:
  33. imgRotationAim = image.new(size = (240, 320))
  34. rotationAngle = 90
  35. GETROTATION = imageRotationBuffer.rotate(+rotationAngle, adjust=1)
  36. else:
  37. imgRotationAim = image.new(size = (320, 240))
  38. GETROTATION = imageRotationBuffer
  39. GETROTATION = imgRotationAim.draw_image(GETROTATION,0,0,alpha=1)
  40. return GETROTATION
  41. def lcdRotation(inputImg):
  42. global cameraSize,ScreenOrientation
  43. imageRotationBuffer = inputImg.crop(0, 0, 240, 320)
  44. if ScreenOrientation:
  45. imgRotationAim = image.new(size = (240, 320))
  46. rotationAngle = 180
  47. else:
  48. imgRotationAim = image.new(size = (320, 240))
  49. rotationAngle = 90
  50. GETROTATION = imageRotationBuffer.rotate(+rotationAngle, adjust=1)
  51. GETROTATION = imgRotationAim.draw_image(GETROTATION,0,0,alpha=1)
  52. return GETROTATION
  53. key_A = BUTTON(14)
  54. key_B = BUTTON(8)
  55. key_C = BUTTON(13)
  56. key_D = BUTTON(7)
  57. image.load_freetype("/root/preset/fonts/CascadiaCodePL-Italic.ttf")
  58. camera.camera.config(size=(240,320))
  59. def getWifiConnectState():
  60. cmd = "wifi_get_connection_info_test 1"
  61. res = os.popen(cmd).read()
  62. wifiInfo = {}
  63. if res.find('get connection infomation successfully!') != -1:
  64. wifiInfo["state"]=True
  65. wifiInfo["AP"] = res[res.find("Connected AP: ")+13:res.find("IP address: ")-1]
  66. wifiInfo["IP"] = res[res.find("IP address: ")+12:res.find("frequency")-1]
  67. wifiInfo["frequency"] = res[res.find("frequency: ")+10:res.find("RSSI")-1]
  68. wifiInfo["RSSI"] = res[res.find("RSSI: ")+6:res.find("link_speed")-1]
  69. wifiInfo["link_speed"] = res[res.find("link_speed: ")+10:res.find("IP address: ")-1]
  70. wifiInfo["noise"] = res[res.find("noise: ")+6:res.find("noise: ")+11]
  71. else:
  72. wifiInfo["state"]=False
  73. wifiInfo["AP"] = "N/A"
  74. wifiInfo["IP"] = "N/A"
  75. wifiInfo["frequency"] = "N/A"
  76. wifiInfo["RSSI"] = "N/A"
  77. wifiInfo["link_speed"] = "N/A"
  78. wifiInfo["noise"] = "N/A"
  79. return wifiInfo
  80. def urldownload(url,filepath=None,filename=None,canvas1=image.new(size = (320, 40))):
  81. """
  82. 下载文件到指定目录
  83. :param url: 文件下载的url
  84. :param filename: 要存放的目录及文件名,例如:./test.xls
  85. :return:
  86. """
  87. headers = {"User-Agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36"}
  88. down_res = requests.get(url,headers=headers,stream=True)
  89. chunk_size = 1024 * 1024 # 单次请求最大值
  90. content_size = int(down_res.headers['content-length']) # 内容体总大小
  91. data_count = 0
  92. with open(filepath,'wb') as file:
  93. for data in down_res.iter_content(chunk_size=chunk_size):
  94. file.write(data)
  95. data_count = data_count + len(data)
  96. now_jd = (data_count / content_size) * 100
  97. # print("\r 文件下载进度:%d%%(%d/%d) - %s" % (now_jd, data_count, content_size, filename), end=" ")
  98. canvas1.clear()
  99. canvas1.draw_string(0,0,str("下载中: ") + filename, scale = 1, color = (255, 0, 0), thickness = 2)
  100. canvas1.draw_string(0,20 , str("进度: %d%%(%d/%d)" % (now_jd, data_count, content_size)), scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  101. display.show(canvas1)
  102. # time.sleep(1)
  103. # return down_res.code
  104. canvas1 = image.new(size = (320, 40))
  105. startConnect=False
  106. param = ''
  107. bin = ''
  108. py = ''
  109. def getWifiConnectState():
  110. cmd = "wifi_get_connection_info_test 1"
  111. res = os.popen(cmd).read()
  112. wifiInfo = {}
  113. if res.find('get connection infomation successfully!') != -1:
  114. wifiInfo["state"]=True
  115. wifiInfo["AP"] = res[res.find("Connected AP: ")+13:res.find("IP address: ")-1]
  116. wifiInfo["IP"] = res[res.find("IP address: ")+12:res.find("frequency")-1]
  117. wifiInfo["frequency"] = res[res.find("frequency: ")+10:res.find("RSSI")-1]
  118. wifiInfo["RSSI"] = res[res.find("RSSI: ")+6:res.find("link_speed")-1]
  119. wifiInfo["link_speed"] = res[res.find("link_speed: ")+10:res.find("IP address: ")-1]
  120. wifiInfo["noise"] = res[res.find("noise: ")+6:res.find("noise: ")+11]
  121. else:
  122. wifiInfo["state"]=False
  123. wifiInfo["AP"] = "N/A"
  124. wifiInfo["IP"] = "N/A"
  125. wifiInfo["frequency"] = "N/A"
  126. wifiInfo["RSSI"] = "N/A"
  127. wifiInfo["link_speed"] = "N/A"
  128. wifiInfo["noise"] = "N/A"
  129. return wifiInfo
  130. def getPrivateIp():
  131. st = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
  132. try:
  133. st.connect(("10.255.255.255",1))
  134. IP = st.getsockname()[0]
  135. except Exception:
  136. IP = "127.0.0.1"
  137. finally:
  138. st.close()
  139. return IP
  140. ssidInfo = ""
  141. passwordInfo = ""
  142. checkConnectState = False
  143. connectText = ""
  144. startConnectWifi=False
  145. wifiConnectState = False
  146. # PublicIp=""
  147. PrivateIP=""
  148. runConnectSig=True
  149. connectSuccessSig=False
  150. while True:
  151. canvas = getLcdRotation(camera.capture())
  152. IP = getPrivateIp()
  153. if ssidInfo!="" and passwordInfo!="":
  154. startConnectWifi=True
  155. #connectText = "Waitting for Connection..."
  156. #canvas.draw_string(10,40, ssidInfo+" "+str(len(ssidInfo))+" "+str(type(ssidInfo)), scale = 1.5, color = (0,0,0), thickness = 1)
  157. canvas.draw_string(10,50, "正在连接WIFI...", scale = 1.5, color = (0,0,0), thickness = 1)
  158. display.show(canvas)
  159. if startConnectWifi==True:
  160. canvas_1 = image.new(size = (320, 320), color = (255,255,255), mode = "RGB")
  161. canvas.draw_image(canvas_1,0,0, alpha=0.4)
  162. if wifiConnectState == True:
  163. if key_B.is_pressed():
  164. while (key_B.is_pressed() == True):
  165. time.sleep(0.001)
  166. startConnectWifi= False
  167. connectText = ""
  168. checkConnectState = False
  169. connectSuccessSig = False
  170. wifiConnectState = False
  171. runConnectSig== True
  172. ssidInfo=""
  173. passwordInfo=""
  174. if checkConnectState == True:
  175. if connectSuccessSig == False:
  176. # PublicIp=getPublicIp()
  177. PrivateIP=getPrivateIp()
  178. connectSuccessSig = True
  179. connectText = "WiFi连接成功!"
  180. canvas.draw_string(10,50, "WiFi连接成功!", scale = 1.5, color = (0,0,0) , thickness = 1)
  181. canvas.draw_string(10,80, "局域网IP地址:" + PrivateIP, scale = 1.5, color = (0,0,0), thickness = 1)
  182. canvas.draw_image((image.open("/root/preset/img/restart_ff0000_24x24.png")).rotate(0, adjust=0),8,216,alpha=1)
  183. ssidInfo=""
  184. passwordInfo=""
  185. display.show(canvas)
  186. time.sleep(3)
  187. canvas.clear()
  188. break
  189. else:
  190. pass
  191. else:
  192. if checkConnectState == False:
  193. os.system("wifi_disconnect_ap_test")
  194. os.system('wifi_connect_chinese_ap_test '+ssidInfo+' '+passwordInfo+'')
  195. wifiConnectState=getWifiConnectState()["state"]
  196. checkConnectState = True
  197. if checkConnectState == True:
  198. if key_B.is_pressed():
  199. while (key_B.is_pressed() == True):
  200. time.sleep(0.001)
  201. startConnectWifi= False
  202. connectText = ""
  203. checkConnectState = False
  204. connectSuccessSig = False
  205. wifiConnectState = False
  206. runConnectSig== True
  207. passwordInfo = ""
  208. ssidInfo = ""
  209. else:
  210. if runConnectSig== True:
  211. connectText = "正在连接WIFI..."
  212. runConnectSig= False
  213. else:
  214. passwordInfo = ""
  215. ssidInfo = ""
  216. connectText = "WiFi连接失败!"
  217. canvas.draw_image((image.open("/root/preset/img/restart_ff0000_24x24.png")).rotate(0, adjust=0),8,216,alpha=1)
  218. canvas.draw_string(10,50, connectText, scale = 1.5, color = (0,0,0) , thickness = 1)
  219. else:
  220. mks = canvas.find_qrcodes()
  221. for mk in mks:
  222. #外框数据
  223. X = mk['x']
  224. Y = mk['y']
  225. W = mk['w']
  226. H = mk['h']
  227. #二维码信息
  228. string = mk['payload']
  229. codeData = string.split(";")
  230. ssidInfo = codeData[0].split(":")[1]
  231. passwordInfo = codeData[1].split(":")[1]
  232. #画外框
  233. canvas.draw_rectangle(X, Y, X + W, Y + H, color=(0, 0, 255), thickness = 2)
  234. #打印信息
  235. canvas.draw_string(int(X) , int(Y - 45) , "SSID:"+ssidInfo, scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  236. canvas.draw_string(int(X) , int(Y - 25) , "PASSWORD:"+passwordInfo, scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  237. canvas.draw_image((image.open("/root/preset/img/exit_ff0000_24x24.png")).rotate(0, adjust=0),288,216,alpha=1)
  238. #canvas.draw_image((image.open("/root/preset/img/camera_bfbfbf_24x24.png")).rotate(0, adjust=0),292,2,alpha=1)
  239. display.show(canvas)
  240. while True:
  241. canvas = getLcdRotation(camera.capture())
  242. # IP = extract_ip()
  243. if(str(param) != '' and str(bin) != '' and str(py) != ''):
  244. startConnect=True
  245. if startConnect==True:
  246. canvas.clear()
  247. time.sleep(5)
  248. urldownload("https://" + bin.split("//")[1],"/root/user/model/" + (str(bin).split("newModels/")[1].split("/")[0]) + ".bin",(str(bin).split("newModels/")[1].split("/")[0]) + ".bin",canvas1)
  249. urldownload("https://" + param.split("//")[1],"/root/user/model/" + (str(param).split("newModels/")[1].split("/")[0]) + ".param", (str(param).split("newModels/")[1].split("/")[0]) + ".param",canvas1)
  250. urldownload("https://" + py.split("//")[1],"/root/" + (str(py).split("newModels/")[1].split("/")[1]),"user_latest_code.py",canvas1)
  251. break
  252. else:
  253. mks = canvas.find_qrcodes()
  254. for mk in mks:
  255. #外框数据
  256. X = mk['x']
  257. Y = mk['y']
  258. W = mk['w']
  259. H = mk['h']
  260. #二维码信息
  261. try:
  262. string = mk['payload']
  263. codeData = json.loads(string)
  264. param = codeData['param']
  265. bin = codeData['bin']
  266. py = codeData['py']
  267. except:
  268. pass
  269. #画外框
  270. canvas.draw_rectangle(X, Y, X + W, Y + H, color=(0, 0, 255), thickness = 2)
  271. #打印信息
  272. canvas.draw_string(int(X) , int(Y - 35) , str(string), scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  273. canvas.draw_string(0, 0 , "扫描二维码来下载模型", scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  274. # canvas.draw_image((image.open("/root/preset/img/camera_ff0000_24x24.png")).rotate(0, adjust=0),280,2,alpha=1)
  275. canvas.draw_image((image.open("/root/preset/img/exit_ff0000_24x24.png")).rotate(0, adjust=0),290,208,alpha=1)
  276. display.show(canvas)
  277. os.system("ln -sf %s /tmp/event && touch /tmp/start" % "/root/user_latest_code.py")