Installation QT and OpenCV interfaces
-
Hi All,
I want to make a 32 bit QT Application on my Windows 10.
I also want the QT application to integrate OpenCV.
I have Microsoft Visual Studio 2019 with version 16.3.7I have the following Options on my QT installer
QT 5.12.6,QT 5.12.5, QT 5.12.4,QT 5.12.3, QT 5.12.2, QT 5.9.9I need guidance on what versions of OpenCV and QT to install on my computer based on my application requirements of 32 bit.
Any Help is appreciated. Thanks in advance
-
In addition,what configuration Should I use to compile them? There are 2 ways stated in the tutorials that I can use MinGW or MSVC2017. What are the differences? Would any compilation suffice for the above requirements?
-
Hi,
The recommendation is to use the latest LTS.
As for the compiler, since you are dealing with C++ libraries, you have to ensure that all your librairies are compiled with the same compiler.
As for MSVC vs MinGW, you have to install Visual Studio yourself (Microsoft Rule). MinGW can be installed through the online installer.
-
Hello @SGaist thank you for the response. Could. You enlighten me on what is the latest LTS? Maybe a link to tell me how to check for the latest LTS
C++ libraries I use the g++ and cmake to compile them. Am I doing the right thing?
I already have the visual studio stated above. Will that do?
-
Hi @Stevendragoes ,
You may follow below video. I have started with it...Regards,
Mucip:) -
LTS = Long Term Support
Do you mean you are using MinGW ?
-
Hello @SGaist and all who are reading this
I have installed the following Items from QT OpenSource Version
Under Developer and Design Tools,
and ''CMake 3.16.0 32-bit''Under QT, I have installed the following
Are those Enough for me to incorporate OpenCV and QT?
-
Hello again,
I have also downloaded MSVC 2017 to be compliant with the QT 5.12.6 -
@Stevendragoes said in Installation QT and OpenCV interfaces:
Are those Enough for me to incorporate OpenCV and QT?
Yes, if 32bit apps are OK for you.
-
Thank you @jsulm