EUTAFT Manuals: Difference between revisions

From Control Systems Technology Group
Jump to navigation Jump to search
(Created page with '==Building the Vision GUI== In order to build the Vision GUI, you need to install qtcreator, the opencv libraries, and the Basler pylon software. To install Qt Creator, run the …')
 
Line 5: Line 5:
<blockquote><code>sudo apt-get install qtcreator </code></blockquote>
<blockquote><code>sudo apt-get install qtcreator </code></blockquote>


To install the OpenCV libraries, follow the steps under the "Install OpenCV from Source" paragraph in the following link: <a href="https://linuxize.com/post/how-to-install-opencv-on-ubuntu-18-04/">How to install OpenCV on Ubuntu 18.04</a>. At the time of programming Vision GUI 2019, opencv3.4.8 was installed.
To install the OpenCV libraries, follow the steps under the "Install OpenCV from Source" paragraph in the following link: [https://linuxize.com/post/how-to-install-opencv-on-ubuntu-18-04/ How to install OpenCV on Ubuntu 18.04]. At the time of programming Vision GUI 2019, opencv3.4.8 was installed.


To install the Basler pylon software, download it from the <a href="https://www.baslerweb.com/en/sales-support/downloads/software-downloads/">Basler Software Downloads site</a>. The pylon version currently used is <a href="https://www.baslerweb.com/en/sales-support/downloads/software-downloads/pylon-5-2-0-linux-x86-32-bit/">Version5.2.0</a>.
To install the Basler pylon software, download it from the [https://www.baslerweb.com/en/sales-support/downloads/software-downloads/ Basler Software Downloads site]. The pylon version currently used is [https://www.baslerweb.com/en/sales-support/downloads/software-downloads/pylon-5-2-0-linux-x86-32-bit/ Version5.2.0].


To build the GUI press <code>ctrl+B</code>. If it fails to build, make sure the opencv and pylon libraries <code>LIBS +=</code> and their respective paths <code>INCLUDEPATH +=</code> are specified in the ''Qtvision.pro'' file. If they are specified, install missing libraries using <code>apt-get>.
To build the GUI press <code>ctrl+B</code>. If it fails to build, make sure the opencv and pylon libraries <code>LIBS +=</code> and their respective paths <code>INCLUDEPATH +=</code> are specified in the ''Qtvision.pro'' file. If they are specified, install missing libraries using <code>apt-get>.

Revision as of 12:56, 26 November 2019

Building the Vision GUI

In order to build the Vision GUI, you need to install qtcreator, the opencv libraries, and the Basler pylon software.

To install Qt Creator, run the following command though the terminal:

sudo apt-get install qtcreator

To install the OpenCV libraries, follow the steps under the "Install OpenCV from Source" paragraph in the following link: How to install OpenCV on Ubuntu 18.04. At the time of programming Vision GUI 2019, opencv3.4.8 was installed.

To install the Basler pylon software, download it from the Basler Software Downloads site. The pylon version currently used is Version5.2.0.

To build the GUI press ctrl+B. If it fails to build, make sure the opencv and pylon libraries LIBS += and their respective paths INCLUDEPATH += are specified in the Qtvision.pro file. If they are specified, install missing libraries using apt-get>.