- 9月 01 週二 202012:24
OpenVino with Intel Neural Compute Stick 2
- 8月 31 週一 202009:56
[Design Pattern] 代理模式 (Proxy Pattern)
[Design Pattern] 代理模式 (Proxy Pattern)
3.2 代理模式優缺點
優點
3.2 代理模式優缺點
優點
- 6月 12 週五 202011:29
A collection of QGraphicsView tutorials and applications

C++ Qt 82 - Custom QGraphicsItem
Qt C++ 02 Mouse Scrolling with Custom Graphics View
Qt Training: Graphics View (part 2/3): Transformations and Coordinate Systems
- 5月 28 週四 202017:08
Multiple Object Tracking Benchmark

In this web site, it provides a lot of benchmark for multiple object tracking.
- 5月 26 週二 202000:07
QThread tutorial part 2

This time we are going to create a new Object intead of using subclass of QThread,and all its job is transfer to a QThread instance by calling moveToThread method.You can find out details on youtube.
Let’s create a new project of window application and add new class, in which it accumaltes from 1 to 999.
- 5月 19 週二 202014:12
QThread tutorial

A good example for writing QThread with a GUI.
Here is another similar example:QT5 TUTORIAL QTHREADS - GUI THREAD - 2020
- 5月 15 週五 202011:46
Qt Mouse Event on QLabel

A good example that help you learn how to handle mouse events
- 5月 15 週五 202010:36
How to find out if the rectangle inside another rectangle?

cv::Mat img(cv::Size(800, 800), CV_8UC3);
// big region of interest (ROI)Rect roi(100, 100, 400, 400);
rectangle(img, roi, Scalar(255, 0, 0), 1);
// some rectanglesvector<Rect> lpROIs;
lpROIs.push_back(Rect(30, 50, 100, 100));
lpROIs.push_back(Rect(420, 250, 100, 100));
lpROIs.push_back(Rect(150, 140, 100, 100));
lpROIs.push_back(Rect(300, 100, 100, 100));
lpROIs.push_back(Rect(250, 250, 100, 100));
lpROIs.push_back(Rect(300, 450, 100, 100));
// check out if the rectangle inside the ROIfor(int i=0; i<lpROIs.size(); i++)
{ // inside the ROI if( (roi&lpROIs[i])==lpROIs[i] )rectangle(img, lpROIs[i], Scalar(0,0,255), -1);
elserectangle(img, lpROIs[i], Scalar(0,255,0), 1);
}
imshow("img", img);waitKey();
- 5月 12 週二 202011:03
Building a computer vision software with Qt and OpenCV
A good example that shows image processing by using OpenCV with Qt IDE.
- 4月 24 週五 202010:22
How to register OpenCV Mat data type in the communication between Qt signal and slot

First, set up OpenCV building environments
INCLUDEPATH += C:\OpenCV\OpenCV4.2.0DNN\include
LIBS += -LC:\OpenCV\OpenCV4.2.0DNN\lib \
-lopencv_world420
