Fixed some compile errors and currently debugging some issue with
setup.sh.
This commit is contained in:
Maurice ONeal 2023-05-15 19:39:29 -04:00
parent fa834aba6c
commit b5ebbace12
3 changed files with 5 additions and 2 deletions

View File

@ -8,7 +8,6 @@ apt install -y wget
apt install -y unzip apt install -y unzip
apt install -y git apt install -y git
apt install -y ffmpeg apt install -y ffmpeg
apt install -y gstreamer1.0*
apt install -y libavcodec-dev apt install -y libavcodec-dev
apt install -y libavformat-dev apt install -y libavformat-dev
apt install -y libavutil-dev apt install -y libavutil-dev
@ -19,4 +18,7 @@ apt install -y libx264-dev
apt install -y libilmbase-dev apt install -y libilmbase-dev
apt install -y libopencv-dev apt install -y libopencv-dev
apt install -y qtbase5-dev apt install -y qtbase5-dev
apt install -y qtchooser
apt install -y qt5-qmake
apt install -y qtbase5-dev-tools
apt install -y apache2 apt install -y apache2

View File

@ -58,7 +58,7 @@ QByteArray genMD5(const QByteArray &bytes)
QByteArray genMD5(const QString &path) QByteArray genMD5(const QString &path)
{ {
auto file = QFile(path); QFile file(path);
if (file.open(QFile::ReadOnly)) if (file.open(QFile::ReadOnly))
{ {

View File

@ -22,6 +22,7 @@
#include <QCryptographicHash> #include <QCryptographicHash>
#include <QFile> #include <QFile>
#include <QDateTime> #include <QDateTime>
#include <QThread>
#include <opencv4/opencv2/opencv.hpp> #include <opencv4/opencv2/opencv.hpp>
#include <opencv4/opencv2/videoio.hpp> #include <opencv4/opencv2/videoio.hpp>