【C++】OpenCV4-线条、矩形、圆形、椭圆等图形的绘制与填充、RNG随机函数的使用
摘要:图形的绘制与填充: //图形的绘制与填充 Mat canvas = Mat::zeros(Size(512, 512), CV_8UC3); namedWindow("canvas", WINDOW_AUTOSIZE); //相关绘制API演示 //绘制直线 line(canvas, Point(1
阅读全文
posted @
2024-01-12 22:18
wshidaboss
阅读(120)
推荐(0) 编辑
【C++/Qt】lambda表达式的简单应用
摘要:要求:点击一个按钮,打开另一个窗口,再次点击该按钮,关闭打开的另一个窗口。 QPushButton *btn = new QPushButton("open",this); btn->move(100,100); QWidget *widget = new QWidget; widget->setW
阅读全文
posted @
2024-01-12 15:44
wshidaboss
阅读(16)
推荐(0) 编辑
【C++/Qt】QLCDNumber-电子时钟实战
摘要:头文件: #ifndef DIGITALCLOCK_H #define DIGITALCLOCK_H #include <QLCDNumber> class digitalClock : public QLCDNumber { Q_OBJECT public: digitalClock(QWidge
阅读全文
posted @
2024-01-11 14:18
wshidaboss
阅读(110)
推荐(0) 编辑
【C++】OpenCV4-颜色空间的转换
摘要:#include <opencv2/opencv.hpp> #include <iostream> using namespace std; using namespace cv; int main() { Mat img = imread("C:/img/3.jpg"); Mat img32; i
阅读全文
posted @
2024-01-07 17:50
wshidaboss
阅读(29)
推荐(0) 编辑
【C++】OpenCV4-图像、视频的读取和保存
摘要:#include <iostream> #include <opencv2/opencv.hpp> using namespace cv; using namespace std; int main() { //图像的读取 Mat img = imread("C:/img/3.jpg", IMREA
阅读全文
posted @
2024-01-07 17:17
wshidaboss
阅读(298)
推荐(0) 编辑
【C/C++】几大排序算法:选择排序、插入排序、冒泡排序、归并排序、快速排序
摘要:#include <iostream> using namespace std; void swap(int* a, int* b) { int tmp = *a; *a = *b; *b = tmp; } void selectSort(int ret[], int n) { for (int i
阅读全文
posted @
2024-01-03 16:13
wshidaboss
阅读(8)
推荐(0) 编辑
error MSB4184: 无法计算表达式“[System.IO.File]::ReadAllText(C:\Users\xu\AppData\Local\QtMsBuild\qt.natvis.xml)”。未能找到文件“C:\Users\xu\AppData\Local\QtMsBuild\qt.natvis.xml”。
摘要:VS 2022编译Qt项目时出现以下问题: C:\Users\xu\AppData\Local\QtMsBuild\qt_globals.targets(765,7): error MSB4184: 无法计算表达式“[System.IO.File]::ReadAllText(C:\Users\xu\
阅读全文
posted @
2024-01-02 15:48
wshidaboss
阅读(0)
推荐(0) 编辑