30_training_data_collect.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  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. name = ''
  81. host = ''
  82. isCollect = False
  83. image_num = 0
  84. save_path = ""
  85. startConnect=False
  86. def getWifiConnectState():
  87. cmd = "wifi_get_connection_info_test 1"
  88. res = os.popen(cmd).read()
  89. wifiInfo = {}
  90. if res.find('get connection infomation successfully!') != -1:
  91. wifiInfo["state"]=True
  92. wifiInfo["AP"] = res[res.find("Connected AP: ")+13:res.find("IP address: ")-1]
  93. wifiInfo["IP"] = res[res.find("IP address: ")+12:res.find("frequency")-1]
  94. wifiInfo["frequency"] = res[res.find("frequency: ")+10:res.find("RSSI")-1]
  95. wifiInfo["RSSI"] = res[res.find("RSSI: ")+6:res.find("link_speed")-1]
  96. wifiInfo["link_speed"] = res[res.find("link_speed: ")+10:res.find("IP address: ")-1]
  97. wifiInfo["noise"] = res[res.find("noise: ")+6:res.find("noise: ")+11]
  98. else:
  99. wifiInfo["state"]=False
  100. wifiInfo["AP"] = "N/A"
  101. wifiInfo["IP"] = "N/A"
  102. wifiInfo["frequency"] = "N/A"
  103. wifiInfo["RSSI"] = "N/A"
  104. wifiInfo["link_speed"] = "N/A"
  105. wifiInfo["noise"] = "N/A"
  106. return wifiInfo
  107. def getPrivateIp():
  108. st = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
  109. try:
  110. st.connect(("10.255.255.255",1))
  111. IP = st.getsockname()[0]
  112. except Exception:
  113. IP = "127.0.0.1"
  114. finally:
  115. st.close()
  116. return IP
  117. ssidInfo = ""
  118. passwordInfo = ""
  119. checkConnectState = False
  120. connectText = ""
  121. startConnectWifi=False
  122. wifiConnectState = False
  123. # PublicIp=""
  124. PrivateIP=""
  125. runConnectSig=True
  126. connectSuccessSig=False
  127. while True:
  128. canvas = getLcdRotation(camera.capture())
  129. IP = getPrivateIp()
  130. if ssidInfo!="" and passwordInfo!="":
  131. startConnectWifi=True
  132. #connectText = "Waitting for Connection..."
  133. #canvas.draw_string(10,40, ssidInfo+" "+str(len(ssidInfo))+" "+str(type(ssidInfo)), scale = 1.5, color = (0,0,0), thickness = 1)
  134. canvas.draw_string(10,50, "正在连接WIFI,请等待...", scale = 1.5, color = (0,0,0), thickness = 1)
  135. display.show(canvas)
  136. if startConnectWifi==True:
  137. canvas_1 = image.new(size = (320, 320), color = (255,255,255), mode = "RGB")
  138. canvas.draw_image(canvas_1,0,0, alpha=0.4)
  139. if wifiConnectState == True:
  140. if key_B.is_pressed():
  141. while (key_B.is_pressed() == True):
  142. time.sleep(0.001)
  143. startConnectWifi= False
  144. connectText = ""
  145. checkConnectState = False
  146. connectSuccessSig = False
  147. wifiConnectState = False
  148. runConnectSig== True
  149. ssidInfo=""
  150. passwordInfo=""
  151. if checkConnectState == True:
  152. if connectSuccessSig == False:
  153. # PublicIp=getPublicIp()
  154. PrivateIP=getPrivateIp()
  155. connectSuccessSig = True
  156. connectText = "WiFi连接成功!"
  157. canvas.draw_string(10,50, "WiFi连接成功!", scale = 1.5, color = (0,0,0) , thickness = 1)
  158. canvas.draw_string(10,80, "局域网IP:" + PrivateIP, scale = 1.5, color = (0,0,0), thickness = 1)
  159. canvas.draw_image((image.open("/root/preset/img/restart_ff0000_24x24.png")).rotate(0, adjust=0),8,216,alpha=1)
  160. ssidInfo=""
  161. passwordInfo=""
  162. display.show(canvas)
  163. time.sleep(3)
  164. canvas.clear()
  165. break
  166. else:
  167. pass
  168. else:
  169. if checkConnectState == False:
  170. os.system("wifi_disconnect_ap_test")
  171. os.system('wifi_connect_chinese_ap_test '+ssidInfo+' '+passwordInfo+'')
  172. wifiConnectState=getWifiConnectState()["state"]
  173. checkConnectState = True
  174. if checkConnectState == True:
  175. if key_B.is_pressed():
  176. while (key_B.is_pressed() == True):
  177. time.sleep(0.001)
  178. startConnectWifi= False
  179. connectText = ""
  180. checkConnectState = False
  181. connectSuccessSig = False
  182. wifiConnectState = False
  183. runConnectSig== True
  184. passwordInfo = ""
  185. ssidInfo = ""
  186. else:
  187. if runConnectSig== True:
  188. connectText = "正在连接WIFI,请等待..."
  189. runConnectSig= False
  190. else:
  191. passwordInfo = ""
  192. ssidInfo = ""
  193. connectText = "WIFI连接失败!"
  194. canvas.draw_image((image.open("/root/preset/img/restart_ff0000_24x24.png")).rotate(0, adjust=0),8,216,alpha=1)
  195. canvas.draw_string(10,50, connectText, scale = 1.5, color = (0,0,0) , thickness = 1)
  196. else:
  197. mks = canvas.find_qrcodes()
  198. for mk in mks:
  199. #外框数据
  200. X = mk['x']
  201. Y = mk['y']
  202. W = mk['w']
  203. H = mk['h']
  204. #二维码信息
  205. string = mk['payload']
  206. codeData = string.split(";")
  207. ssidInfo = codeData[0].split(":")[1]
  208. passwordInfo = codeData[1].split(":")[1]
  209. #画外框
  210. canvas.draw_rectangle(X, Y, X + W, Y + H, color=(0, 0, 255), thickness = 2)
  211. #打印信息
  212. canvas.draw_string(int(X) , int(Y - 45) , "WIFI名:"+ssidInfo, scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  213. canvas.draw_string(int(X) , int(Y - 25) , "密码:"+passwordInfo, scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  214. canvas.draw_image((image.open("/root/preset/img/exit_ff0000_24x24.png")).rotate(0, adjust=0),288,216,alpha=1)
  215. #canvas.draw_image((image.open("/root/preset/img/camera_bfbfbf_24x24.png")).rotate(0, adjust=0),292,2,alpha=1)
  216. display.show(canvas)
  217. while True:
  218. canvas.clear()
  219. canvas = getLcdRotation(camera.capture())
  220. # IP = extract_ip()
  221. if str(name) != '' and str(host) != '':
  222. startConnect=True
  223. if startConnect==True:
  224. _COCOCLOUD_SEND_ENDPOINT = "https://" + host.split("//")[1] + "v831_update_code_connect_device"
  225. _COCOCLOUD_SEND_DATA = {"DatasetName":"" + str(name) + ""}
  226. try:
  227. _COCOCLOUD_SEND_REQUEST = requests.post(_COCOCLOUD_SEND_ENDPOINT, json = _COCOCLOUD_SEND_DATA , headers = { "Content-type": "application/json" }, timeout = 60)
  228. print(str(_COCOCLOUD_SEND_REQUEST.status_code)+", "+str(_COCOCLOUD_SEND_REQUEST.content))
  229. except BaseException as e:
  230. print(e)
  231. pass
  232. isCollect = True
  233. break
  234. else:
  235. mks = canvas.find_qrcodes()
  236. for mk in mks:
  237. #外框数据
  238. X = mk['x']
  239. Y = mk['y']
  240. W = mk['w']
  241. H = mk['h']
  242. #二维码信息
  243. string = mk['payload']
  244. try:
  245. codeData = string.split(";")
  246. name = codeData[0].split("=")[1]
  247. host = codeData[1].split("=")[1]
  248. except:
  249. pass
  250. #画外框
  251. canvas.draw_rectangle(X, Y, X + W, Y + H, color=(0, 0, 255), thickness = 2)
  252. #打印信息
  253. canvas.draw_string(int(X) , int(Y - 35) , str(string), scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  254. canvas.draw_string(0, 0 , "扫描二维码来访问图片标注服务器", scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  255. canvas.draw_string(0, 20 , "", scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  256. # canvas.draw_image((image.open("/root/preset/img/camera_ff0000_24x24.png")).rotate(0, adjust=0),290,2,alpha=1)
  257. canvas.draw_image((image.open("/root/preset/img/exit_ff0000_24x24.png")).rotate(0, adjust=0),290,208,alpha=1)
  258. display.show(canvas)
  259. isAlTake = False
  260. while True:
  261. canvas1 = getLcdRotation(camera.capture())
  262. if isCollect:
  263. if not isAlTake:
  264. if key_C.is_pressed() :
  265. while not (key_C.is_pressed() == False):
  266. time.sleep(0.01)
  267. image_num = image_num + 1
  268. save_path = ''.join([str(x) for x in ["/root/user/img/image", str(image_num), ".jpg"]])
  269. canvas1.save(save_path)
  270. isAlTake = True
  271. canvas1.draw_string(0, 0 , "请拍照来采集图片数据", scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  272. canvas1.draw_image((image.open("/root/preset/img/camera_ff0000_24x24.png")).rotate(0, adjust=0),290,2,alpha=1)
  273. canvas1.draw_image((image.open("/root/preset/img/exit_ff0000_24x24.png")).rotate(0, adjust=0),290,208,alpha=1)
  274. display.show(canvas1)
  275. if isAlTake:
  276. canvas1.draw_image((image.open(save_path)),0,0)
  277. # if key_D.is_pressed() :
  278. # while not (key_D.is_pressed() == False):
  279. # time.sleep(0.01)
  280. # img = open(save_path,'rb')
  281. # data = {"file": img}
  282. # param = {"name": str(name)}
  283. # res = requests.post("https://" + host.split("//")[1] + "v831_upload_image", files=data, data=param)
  284. # print(res.status_code)
  285. # if str(res.status_code) == "200":
  286. # isAlTake = False
  287. # if key_C.is_pressed() :
  288. # while not (key_C.is_pressed() == False):
  289. # time.sleep(0.01)
  290. # isAlTake = False
  291. img = open(save_path,'rb')
  292. data = {"file": img}
  293. param = {"name": str(name)}
  294. res = requests.post("https://" + host.split("//")[1] + "v831_upload_image", files=data, data=param)
  295. print(res.status_code)
  296. if str(res.status_code) == "200":
  297. isAlTake = False
  298. # canvas1.draw_image((image.open("/root/preset/img/upload_ff0000_24x24.png")).rotate(0, adjust=0),5,2,alpha=1)
  299. # canvas1.draw_image((image.open("/root/preset/img/cancel_ff0000_24x24.png")).rotate(0, adjust=0),280,2,alpha=1)
  300. canvas1.draw_image((image.open("/root/preset/img/exit_ff0000_24x24.png")).rotate(0, adjust=0),290,208,alpha=1)
  301. display.show(canvas1)
  302. display.show(canvas1)