36_pictureAnalysis.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. from maix import display
  2. from maix import image
  3. from maix import camera
  4. import pyaudio
  5. import wave
  6. import os
  7. from maix import mjpg
  8. from maix import utils
  9. import base64
  10. import time
  11. import requests
  12. import json
  13. import uuid
  14. import threading
  15. import socket
  16. import uuid
  17. import sys
  18. sys.path.append('/root/')
  19. from CocoPi import BUTTON
  20. import os
  21. ScreenOrientation = False
  22. try:
  23. if os.path.exists("/etc/cameraSize.cfg"):
  24. cameraSize = True
  25. else:
  26. cameraSize = False
  27. except:
  28. cameraSize = False
  29. def getLcdRotation(cameraCapture):
  30. global cameraSize
  31. if cameraSize:
  32. return lcdRotationNew(cameraCapture)
  33. else:
  34. return lcdRotation(cameraCapture)
  35. def lcdRotationNew(inputImg):
  36. global cameraSize,ScreenOrientation
  37. imageRotationBuffer = inputImg.crop(0, 0, 320, 240)
  38. if ScreenOrientation:
  39. imgRotationAim = image.new(size = (240, 320))
  40. rotationAngle = 90
  41. GETROTATION = imageRotationBuffer.rotate(+rotationAngle, adjust=1)
  42. else:
  43. imgRotationAim = image.new(size = (320, 240))
  44. GETROTATION = imageRotationBuffer
  45. GETROTATION = imgRotationAim.draw_image(GETROTATION,0,0,alpha=1)
  46. return GETROTATION
  47. def lcdRotation(inputImg):
  48. global cameraSize,ScreenOrientation
  49. imageRotationBuffer = inputImg.crop(0, 0, 240, 320)
  50. if ScreenOrientation:
  51. imgRotationAim = image.new(size = (240, 320))
  52. rotationAngle = 180
  53. else:
  54. imgRotationAim = image.new(size = (320, 240))
  55. rotationAngle = 90
  56. GETROTATION = imageRotationBuffer.rotate(+rotationAngle, adjust=1)
  57. GETROTATION = imgRotationAim.draw_image(GETROTATION,0,0,alpha=1)
  58. return GETROTATION
  59. key_B = BUTTON(8)
  60. key_C = BUTTON(13)
  61. key_D = BUTTON(7)
  62. camera.camera.config(size=(240,320))
  63. image.load_freetype("/root/preset/fonts/simhei.ttf")
  64. canvas = image.new(size = (320, 240))
  65. # 播放
  66. def voice_numberMap(value):
  67. valueScaled = float(value - 0) / float(100)
  68. return int(valueScaled * 31)
  69. VOICESTATE = 0
  70. VOICESTREAM = ""
  71. VOICEPYAUDIO = pyaudio.PyAudio()
  72. CHUNK = 1024
  73. VOICEPLAYSTATE = True
  74. VOICEWF = ""
  75. VOICEPPATH = ""
  76. VOICENUMP = str(voice_numberMap(100))
  77. time.sleep(0.01)
  78. SYSTEMVOICE = "amixer cset numid=8,iface=MIXER,name=\"LINEOUT volume\" "+ VOICENUMP+""
  79. def playVoice():
  80. global VOICEPLAYSTATE
  81. VOICEPLAYSTATE = True
  82. VOICEPLAYSTATE = VoicePlayState()
  83. def VoicePlayState():
  84. global VOICESTATE,VOICEDATA,CHUNK,VOICESTREAM,VOICEPYAUDIO,VOICEWF,VOICEPPATH
  85. if VOICESTATE == 0:
  86. VOICEWF = wave.open(VOICEPPATH, "rb")#(sys.argv[1], "rb"
  87. VOICEPYAUDIO = pyaudio.PyAudio()
  88. VOICESTREAM = VOICEPYAUDIO.open(format=VOICEPYAUDIO.get_format_from_width(VOICEWF.getsampwidth()),channels=VOICEWF.getnchannels(),rate=VOICEWF.getframerate(),output=True)
  89. VOICEDATA = VOICEWF.readframes(CHUNK)
  90. VOICESTATE = 1
  91. return True
  92. else:
  93. if len(VOICEDATA) > 0:
  94. try:
  95. VOICESTREAM.write(VOICEDATA)
  96. VOICEDATA = VOICEWF.readframes(CHUNK)
  97. return True
  98. except:
  99. VOICESTATE = 0
  100. else:
  101. VOICESTREAM.stop_stream()
  102. VOICESTREAM.close()
  103. VOICEPYAUDIO.terminate()
  104. VOICESTATE = 0
  105. return False
  106. # 线程1
  107. def thread_calsss_fun1():
  108. global isStateVoice
  109. while True:
  110. if isStateVoice==1:
  111. getImage()
  112. elif VOICEPPATH != "" and isStateVoice == 3:
  113. playVoice()
  114. # 关闭线程
  115. # CocoPiThread1.join()
  116. # 图片转base64
  117. def encode_image(image_path):
  118. img_data = ""
  119. try:
  120. with open(image_path, "rb") as f:
  121. img_data = f.read()
  122. except:
  123. pass
  124. return str(base64.b64encode(img_data), "utf-8")
  125. def getImage():
  126. global imgUrlStr,isStateVoice,cameraImgUrl,VOICEPPATH
  127. uid = str(uuid.uuid1().hex)
  128. strBase = encode_image(cameraImgUrl)
  129. VOICEPPATH = ""
  130. params = {
  131. "max_tokens": 4096,
  132. "messages":[
  133. {
  134. "role": "user",
  135. "content":[
  136. {"text": "图片讲述了什么?","type": "text"},
  137. {"image_url": {"url": f"data:image/jpeg;base64,{strBase}"},"type": "image_url"}
  138. ]
  139. }
  140. ],
  141. "uid": uid,
  142. "stream": False
  143. }
  144. headers={
  145. "Content-Type":"application/json"
  146. }
  147. res = requests.post("https://gpt4.cocorobo.cn/imageAnalyse", headers=headers, data=json.dumps(params))
  148. try:
  149. if res.status_code == 200:
  150. isStateVoice = 3
  151. aa = json.loads(res.text)["FunctionResponse"]["choices"][0]["message"]["content"]
  152. result_num = len(aa)//20
  153. for i in range(result_num + 1):
  154. imgUrlStr.append("")
  155. imgUrlStr[i] = str(aa)[i*20:(i+1)*20]
  156. url = "https://gpt4.cocorobo.cn/getV831Audio"
  157. payload = json.dumps({"input": aa,"response_format":"mp3","voice": "shimmer","uid":uid})
  158. response=requests.request("POST", url, headers=headers, data=payload)
  159. if response.status_code == 200:
  160. # print(json.loads(response.text)["FunctionResponse"]["url"])
  161. a = "https://gpt4.cocorobo.cn" + json.loads(response.text)["FunctionResponse"]["url"]
  162. r = requests.get(a)
  163. with open("/root/preset/audio/" + uid+".wav","wb") as f:
  164. f.write(r.content)
  165. VOICEPPATH = "/root/preset/audio/" + uid+".wav"
  166. except:
  167. isStateVoice = 3
  168. imgUrlStr = ["Fail"]
  169. pass
  170. # 判断联网
  171. def wifi_is_content():
  172. global getDateNum
  173. cmd = "ifconfig"
  174. res = os.popen(cmd).read()
  175. data = False
  176. if res.rfind("inet addr:")!=48:
  177. data = True
  178. return data
  179. def getPrivateIp():
  180. st = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
  181. try:
  182. st.connect(("10.255.255.255",1))
  183. IP = st.getsockname()[0]
  184. except Exception:
  185. IP = "127.0.0.1"
  186. finally:
  187. st.close()
  188. return IP
  189. isStateVoice = 0 # 变量为0开始录音,1 GPT 识别录音结果
  190. ScreenOrientation = False
  191. CAMERAROTATE = +90
  192. ssidInfo = ""
  193. passwordInfo = ""
  194. checkConnectState = False
  195. connectText = ""
  196. startConnect=False
  197. wifiConnectState = False
  198. # PublicIp=""
  199. PrivateIP=""
  200. runConnectSig=True
  201. connectSuccessSig=False
  202. while True:
  203. if wifi_is_content():
  204. break
  205. else:
  206. canvas = getLcdRotation(camera.capture())
  207. if ssidInfo!="" and passwordInfo!="":
  208. startConnect=True
  209. #connectText = "Waitting for Connection..."
  210. #canvas.draw_string(10,40, ssidInfo+" "+str(len(ssidInfo))+" "+str(type(ssidInfo)), scale = 1.5, color = (0,0,0), thickness = 1)
  211. canvas.draw_string(10,50, "Connecting to wifi...", scale = 1.5, color = (0,0,0), thickness = 1)
  212. display.show(canvas)
  213. if startConnect==True:
  214. canvas_1 = image.new(size = (320, 320), color = (255,255,255), mode = "RGB")
  215. canvas.draw_image(canvas_1,0,0, alpha=0.4)
  216. if wifiConnectState == True:
  217. if key_B.is_pressed():
  218. while (key_B.is_pressed() == True):
  219. time.sleep(0.001)
  220. startConnect= False
  221. connectText = ""
  222. checkConnectState = False
  223. connectSuccessSig = False
  224. wifiConnectState = False
  225. runConnectSig== True
  226. ssidInfo=""
  227. passwordInfo=""
  228. if checkConnectState == True:
  229. if connectSuccessSig == False:
  230. # PublicIp=getPublicIp()
  231. connectSuccessSig = True
  232. connectText = "Wifi connection successfully!"
  233. # canvas.draw_string(10,80, "The WLAN PUBLIC IP:" + PublicIp, scale = 1.5, color = (0,0,0), thickness = 1)
  234. canvas.draw_string(10,110, "THE WLAN PRIVATE IP:" + PrivateIP, scale = 1.5, color = (0,0,0), thickness = 1)
  235. # canvas.draw_image((image.open("/root/preset/img/restart_ff0000_24x24.png")).rotate(0, adjust=0),8,216,alpha=1)
  236. ssidInfo=""
  237. passwordInfo=""
  238. canvas.clear()
  239. break
  240. else:
  241. pass
  242. else:
  243. if checkConnectState == False:
  244. os.system("wifi_disconnect_ap_test")
  245. os.system('wifi_connect_chinese_ap_test '+ssidInfo+' '+passwordInfo+'')
  246. checkConnectState = True
  247. if checkConnectState == True:
  248. if key_B.is_pressed():
  249. while (key_B.is_pressed() == True):
  250. time.sleep(0.001)
  251. startConnect= False
  252. connectText = ""
  253. checkConnectState = False
  254. connectSuccessSig = False
  255. wifiConnectState = False
  256. runConnectSig== True
  257. passwordInfo = ""
  258. ssidInfo = ""
  259. else:
  260. if runConnectSig== True:
  261. connectText = "Connecting to wifi,please wait..."
  262. runConnectSig= False
  263. else:
  264. passwordInfo = ""
  265. ssidInfo = ""
  266. connectText = "Wifi connection failed!"
  267. canvas.draw_image((image.open("/root/preset/img/restart_ff0000_24x24.png")).rotate(0, adjust=0),8,216,alpha=1)
  268. canvas.draw_string(10,50, connectText, scale = 1.5, color = (0,0,0) , thickness = 1)
  269. else:
  270. mks = canvas.find_qrcodes()
  271. for mk in mks:
  272. #外框数据
  273. X = mk['x']
  274. Y = mk['y']
  275. W = mk['w']
  276. H = mk['h']
  277. #二维码信息
  278. string = mk['payload']
  279. codeData = string.split(";")
  280. ssidInfo = codeData[0].split(":")[1]
  281. passwordInfo = codeData[1].split(":")[1]
  282. #画外框
  283. canvas.draw_rectangle(X, Y, X + W, Y + H, color=(0, 0, 255), thickness = 2)
  284. #打印信息
  285. canvas.draw_string(int(X) , int(Y - 45) , "wifi name:"+ssidInfo, scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  286. canvas.draw_string(int(X) , int(Y - 25) , "password:"+passwordInfo, scale = 1, color = (255, 0, 0), thickness = 2) #内框ID
  287. canvas.draw_image((image.open("/root/preset/img/exit_ff0000_24x24.png")).rotate(0, adjust=0),288,216,alpha=1)
  288. display.show(canvas)
  289. imgUrlStr = []
  290. # 线程1
  291. CocoPiThread1 = threading.Thread(target=thread_calsss_fun1)
  292. # 开启线程
  293. CocoPiThread1.start()
  294. cameraImgUrl = ""
  295. # getImage()
  296. image_num = 0
  297. while True:
  298. if key_D.is_pressed():
  299. isStateVoice = 0
  300. imgUrlStr = []
  301. VOICEPPATH = ""
  302. if len(imgUrlStr) > 0 and isStateVoice ==3:
  303. canvas.clear()
  304. canvas.draw_image((image.open("/root/preset/img/clockwise_bfbfbf_24x24.png")).rotate(0, adjust=0),2,2,alpha=1)
  305. if len(imgUrlStr) > 0:
  306. for i in range(len(imgUrlStr)):
  307. canvas.draw_string(0,15*(i + 2), str(imgUrlStr[i]), scale = 1, color = (255,255,255) , thickness = 1)
  308. elif isStateVoice != 2 and isStateVoice != 1:
  309. canvas.clear()
  310. canvas = getLcdRotation(camera.capture())
  311. if key_C.is_pressed():
  312. while not (key_C.is_pressed() == False):
  313. time.sleep(0.1)
  314. image_num = image_num + 1
  315. cameraImgUrl = "/root/user/img/image"+str(image_num)+ ".jpg"
  316. save_path = cameraImgUrl
  317. canvas.save(save_path)
  318. display.show(canvas)
  319. time.sleep(1)
  320. imgUrlStr = []
  321. isStateVoice = 1
  322. canvas.draw_image((image.open("/root/preset/img/camera_bfbfbf_24x24.png")).rotate(0, adjust=0),292,2,alpha=1)
  323. display.show(canvas)