<?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>i.MX Processors中的主题 Re: Using Python</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618492#M93707</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nevermind.&amp;nbsp; I found out how to install pip.&amp;nbsp; Need to get smart setup correctly with a Host server and then can install pip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Dec 2016 00:23:30 GMT</pubDate>
    <dc:creator>hansenmike</dc:creator>
    <dc:date>2016-12-22T00:23:30Z</dc:date>
    <item>
      <title>Using Python</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618488#M93703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have Yocto running on my imx6qpsabresd dev board.&amp;nbsp; I need to run some python algorithms.&amp;nbsp; Python is installed but I need to add a lot of modules (i.e. numpy).&amp;nbsp; On an Ubuntu system, I could use pip install.&amp;nbsp; This doesn't work.&amp;nbsp; How do I get pip installed.&amp;nbsp; Again on Ubuntu, I think I use apt-get.&amp;nbsp; I think the equivalent on Yocto is smart?&amp;nbsp; Can I use that to install PIP?&amp;nbsp; and how?&lt;/P&gt;&lt;P&gt;Also, I need to download and run OpenCV and OpenCL and call the APIs from Python.&amp;nbsp; How do I do that and build the library so that it leverages the GPU on the imx6qp chip?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2016 18:21:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618488#M93703</guid>
      <dc:creator>hansenmike</dc:creator>
      <dc:date>2016-12-16T18:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618489#M93704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mike Hansen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are several Python modules available as part of the BSP. You can do a quick search of the available modules using the command:&lt;/P&gt;&lt;P&gt;bitbake –s | grep python&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can install pip by using the python-pip recipe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are some packages for OpenCV as well, but I’ll have to check how the API is called from Python. There is an OpenCV library for Python but I haven’t seen it on the BSP. I’ll let you know if I find more information on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2016 23:44:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618489#M93704</guid>
      <dc:creator>gusarambula</dc:creator>
      <dc:date>2016-12-19T23:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618490#M93705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mike Hansen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The documents I found on using OpenCV that use Python are run on Ubuntu. You can see the setup on the following document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting Up OpenCV in i.MX6 Based Boards&lt;BR /&gt; &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-331941"&gt;https://community.nxp.com/docs/DOC-331941&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interfacing Depth Sensors with ROS on NXP i.MX6 boards&lt;BR /&gt; &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-330334"&gt;https://community.nxp.com/docs/DOC-330334&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once installed you can run the python code importing the cv2 library, which corresponds to OpenCV and you should also be able to use OpenCL the same way,&amp;nbsp; but I’m not sure if using Ubuntu on your board would be an option and I’m afraid we do not have much documentation on using OpenCV and OpenCL using Python.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2016 18:19:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618490#M93705</guid>
      <dc:creator>gusarambula</dc:creator>
      <dc:date>2016-12-20T18:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618491#M93706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you elaborate on&lt;/P&gt;&lt;P&gt; You can install pip by using the python-pip recipe?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean I have to rebuild the image?&amp;nbsp; Or is this something I can run directly from a terminal window on the imx6 dev board?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2016 00:50:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618491#M93706</guid>
      <dc:creator>hansenmike</dc:creator>
      <dc:date>2016-12-21T00:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618492#M93707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nevermind.&amp;nbsp; I found out how to install pip.&amp;nbsp; Need to get smart setup correctly with a Host server and then can install pip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Dec 2016 00:23:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618492#M93707</guid>
      <dc:creator>hansenmike</dc:creator>
      <dc:date>2016-12-22T00:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using Python</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618493#M93708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I might prefer to install Ubuntu on my imx6qpsabresd, but I can't find correct documentation on how to do this.&amp;nbsp; Can you help with that?&amp;nbsp; Then I'll just switch to Ubuntu.&amp;nbsp; It's much easier than Yocto.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 02:44:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-Python/m-p/618493#M93708</guid>
      <dc:creator>hansenmike</dc:creator>
      <dc:date>2016-12-29T02:44:17Z</dc:date>
    </item>
  </channel>
</rss>

