- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
def classify_frame(net, inputQueue, outputQueue):
while True:
if not inputQueue.empty():
frame = inputQueue.get()
frame = cv2.resize(frame, (300, 300))
blob = cv2.dnn.blobFromImage(frame, size=(300, 300), ddepth=cv2.CV_8U)
net.setInput(blob)
out = net.forward() # Debugging stops the WIFI connection at this point
outputQueue.put(out)
When I annotate these line, the wifi can connect normally.
# out = net.forward()
# outputQueue.put(out)
And I also tested the person model and change the wifi, It's the same problem.
Manually connect to wifi, also can not connect, when I terminate the program to run, can connect.
Why?
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Greetings,
May I know which sample application you are using for this? (eg: interactive_face_detection_demo)
and the models that you use (eg:face-detection-adas-0001)?
Besides, which OpenVINO version are you using for this? and which Raspbian version are you using?
Sincerely,
Iffa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Greetings,
Thank you for your question. If you need any additional information from Intel, please submit a new question as Intel is no longer monitoring this thread.
Sincerely,
Iffa
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page