Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.
6404 Discussions

Running the openvino face detection example on the raspberry PI caused the wifi connection to fail

_DT
Beginner
431 Views

 

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?

0 Kudos
2 Replies
Iffa_Intel
Moderator
415 Views

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


0 Kudos
Iffa_Intel
Moderator
405 Views

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


0 Kudos
Reply