Intelligent gate system of parking lot (qt)

demand This project is a three-level project at the end of the term, which was completed by my roommate and I in a team. Among them, I am responsible for Baidu identification, camera acquisition, time display and code integration Design The functions of the project include: the camera obtains the license plate number, screenshots and a ...

Posted by Ekate on Thu, 30 Dec 2021 01:36:53 +0100

Video module based on mplayer

brief introduction Mplayer is an open source multimedia player that can run in mainstream operating systems, such as LInux, Unix like, Windows, Mac OS. Mplayer is built on the command line interface. For the use of the command line, refer to: https://www.cnblogs.com/huangpeng1990/p/4364373.html Here are some common command lines based on m ...

Posted by chuspy on Wed, 29 Dec 2021 16:40:20 +0100

QT: Dialog boxdialog

1 basic concepts of dialog box Dialog box is an indispensable part of GUI program. Many functional components that cannot or are not suitable for being placed in the main window must be set in the dialog box. The dialog box is usually a top-level window, which appears at the top of the program to realize short-term tasks or concise user intera ...

Posted by Griven on Tue, 28 Dec 2021 12:51:08 +0100

Summary of dark horse cloud disk project

Overall architecture diagram 1. Distributed memory fast DFS 2. redis cache database 3. MySql database 4.HTTP protocol 5. Server nginx 6. Dynamic request processing fastcgi spawn fcgi 7. Client Qt According to the function of the client, it is summarized in modules Directory composition of client common public interface, ...

Posted by paddycallaghan on Sun, 26 Dec 2021 23:22:39 +0100

PyQt5 Full 95 Window QSS Base Ultra Fine

QSS Base of PyQt5 Full 95 Window CSS Tutorial:https://www.w3school.com.cn/css/index.asp Check the links for details, but there is no problem reading the following article. QSS Concepts The whole process of QSS is Qt Style Sheets, as the name implies, a Qt stylesheet. Qt stylesheets are a powerful mechanism that allows you to customize the ap ...

Posted by SleepyP on Thu, 23 Dec 2021 14:13:25 +0100

Detailed explanation of qDebug usage

1. Usage Stream mode output Instead of std::out, you need to add endl at the end, which is more convenient to use. It supports direct output of common types. It also supports QT built-in data type output, such as QMap, QList, QVaraint, etc. QT is a powerful debugging tool QString strText = "hello"; bool bOk = true; qDebug()<< str ...

Posted by bleh on Wed, 22 Dec 2021 00:40:07 +0100

Qt --- network programming

Network programming The Qt network module provides us with classes for writing TCP / IP clients and servers. It provides lower level classes, such as QTcpSocket, QTcpServer and QUdpSocket representing low-level network concepts, and high-level classes such as QNetworkRequest, QNetworkReply and QNetworkAccessManager to perform network opera ...

Posted by philosophia on Tue, 21 Dec 2021 07:58:39 +0100

qt use style sheets to set window widget s to fillet

summary The window widget cannot be set to fillet directly through the style sheet. You need to drag the control QFrame into the window QWidget, set the QFrame to be the same size as the window QWidget, and drag the control required in the window QWidget into the QFrame. Example The following is a window that prompts the tool. It simply reco ...

Posted by Niyati_1984 on Mon, 20 Dec 2021 23:42:03 +0100

[translation] Qt animation framework

The animation framework is designed to provide a simple way to create an animated and smooth GUI. Through the animation Qt attribute, the framework provides a lot of freedom for animation widgets and other qobjects. The frame can also be used with the drawing view frame. Many of the concepts available in the animation framework are also availab ...

Posted by khjart on Sat, 18 Dec 2021 12:20:56 +0100

Qt/C + + implementation of multifunctional calculator

1, Interface layout The following picture is the interface layout of the calculator. You can know the basic functions of the calculator from the interface, including basic operations of addition, subtraction, multiplication and division, cosine, sine and other function operations. 2, Function brief introduction and operation display The ab ...

Posted by Sydok on Sat, 18 Dec 2021 09:17:54 +0100