<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re:Running the openvino face detection example on the raspberry PI caused the wifi connection to fail in Intel® Distribution of OpenVINO™ Toolkit</title>
    <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Running-the-openvino-face-detection-example-on-the-raspberry-PI/m-p/1241869#M22148</link>
    <description>&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;Greetings,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;May I know which sample application you are using for this? (eg: interactive_face_detection_demo)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;and the models that you use (eg:face-detection-adas-0001)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Besides, which OpenVINO version are you using for this? and which Raspbian version are you using?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;Sincerely,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;Iffa&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 30 Dec 2020 03:14:30 GMT</pubDate>
    <dc:creator>Iffa_Intel</dc:creator>
    <dc:date>2020-12-30T03:14:30Z</dc:date>
    <item>
      <title>Running the openvino face detection example on the raspberry PI caused the wifi connection to fail</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Running-the-openvino-face-detection-example-on-the-raspberry-PI/m-p/1241588#M22130</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;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)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I annotate these line,&amp;nbsp;the wifi can connect normally.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;# out = net.forward()
# outputQueue.put(out)&lt;/LI-CODE&gt;
&lt;P&gt;And I also tested the person model and change the wifi, It's the same problem.&lt;/P&gt;
&lt;P&gt;Manually connect to wifi, also can not connect, when I terminate the program to run, can connect.&lt;/P&gt;
&lt;P&gt;Why?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Dec 2020 10:02:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Running-the-openvino-face-detection-example-on-the-raspberry-PI/m-p/1241588#M22130</guid>
      <dc:creator>_DT</dc:creator>
      <dc:date>2020-12-29T10:02:41Z</dc:date>
    </item>
    <item>
      <title>Re:Running the openvino face detection example on the raspberry PI caused the wifi connection to fail</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Running-the-openvino-face-detection-example-on-the-raspberry-PI/m-p/1241869#M22148</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;Greetings,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;May I know which sample application you are using for this? (eg: interactive_face_detection_demo)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;and the models that you use (eg:face-detection-adas-0001)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Besides, which OpenVINO version are you using for this? and which Raspbian version are you using?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;Sincerely,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px;"&gt;Iffa&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Dec 2020 03:14:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Running-the-openvino-face-detection-example-on-the-raspberry-PI/m-p/1241869#M22148</guid>
      <dc:creator>Iffa_Intel</dc:creator>
      <dc:date>2020-12-30T03:14:30Z</dc:date>
    </item>
    <item>
      <title>Re:Running the openvino face detection example on the raspberry PI caused the wifi connection to fail</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Running-the-openvino-face-detection-example-on-the-raspberry-PI/m-p/1244255#M22280</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Calibri, sans-serif; font-size: 11pt;"&gt;Thank you for your question.&amp;nbsp;If you need any additional information from Intel, please submit a new question as Intel is no longer monitoring this thread.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Calibri, sans-serif; font-size: 11pt;"&gt;Sincerely,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Calibri, sans-serif; font-size: 11pt;"&gt;Iffa&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Jan 2021 17:48:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Running-the-openvino-face-detection-example-on-the-raspberry-PI/m-p/1244255#M22280</guid>
      <dc:creator>Iffa_Intel</dc:creator>
      <dc:date>2021-01-07T17:48:53Z</dc:date>
    </item>
  </channel>
</rss>

