QT
李伯爵的指间沙
这个作者很懒,什么都没留下…
展开
-
灰度共生矩阵----提取纹理信息
前段时间一直在出差,各处跑,没有多少时间写博客;灰度共生矩阵(GLDM)的统计方法是20世纪70年代初由R.Haralick等人提出的,它是在假定图像中各像素间的空间分布关系包含了图像纹理信息的前提下,提出的具有广泛性的纹理分析方法。The statistical method of grayscale symbiosis matrix (GLDM) was proposed by R.Haralick et al., in the early 1970s. It is a generalized原创 2020-08-30 16:59:12 · 2022 阅读 · 0 评论 -
2020年8月5日21:35:43 图像左右上下翻转
代码如下:功能比较简单,没有什么难度,基本思路是从数据中获取图像ID,读取进行旋转镜像操作。需要主要的是,imread(ImagePath[0].toLocal8Bit().toStdString()),因为路径有中文,会出现读取不到的现象。The code is as follows: the function is relatively simple, there is no difficulty, the basic idea is to get the image ID from the da.原创 2020-08-05 22:17:54 · 429 阅读 · 0 评论 -
2020年8月5日10:43:11 notes(QT singal and slot)
在信号连接的时候写成了一下格式:connect(ui->Button_contrarotate_270, SIGNAL(clicked()), this, SLOT(OnRoateContrarotate_270));问题:QObject::connect: Parentheses expected, slot MainWindow::OnRoateContrarotate_270 in mainwindow.cpp:114QObject::connect: (sender name:.原创 2020-08-05 10:45:18 · 173 阅读 · 0 评论 -
C++ QT 正则表达式---->识别结果的过滤
元字符 描述 \ 将下一个字符标记为一个特殊字符、或一个原义字符、或一个向后引用、或一个八进制转义符。例如,“\\n”匹配\n。“\n”匹配换行符。序列“\\”匹配“\”而“\(”则匹配“(”。即相当于多种编程语言中都有的“转义字符”的概念。 ^ 匹配输入字符串的开始位置。如果设置了RegExp对象的Multiline属性,^也匹配“\n”或“\r”之后的位置。 $ ...原创 2020-07-31 14:30:32 · 976 阅读 · 0 评论 -
qt QTableWidget stylesheet
自己写了一个函数,封装QTableWidget的样式,根据自己的需求进行修改单元格的文字颜色、背景颜色等。I wrote a function to encapsulate the style of QTableWidget and modify the text color and background color of the cell according to my own requirements./**********************************************原创 2020-07-22 10:13:14 · 2161 阅读 · 0 评论 -
C++ opencv and QT5.9.8 use CRNN to OCR
实现了C++调用CRNN模型,实现OCR识别。 C++ calls CRNN model and OCR recognition. CRNN是一种卷积循环神经网络结构,用于解决基于图像的序列识别问题,特别是场景文字识别问题。CRNN is a kind of convolution loop neural network structure, which is used to solve the sequence recognition problem based on image, es..原创 2020-07-21 17:14:27 · 1443 阅读 · 5 评论 -
C++ QT(Draw the curve from the import file)
通过加载文件,解析文件中数据,并根据解析的数据进行绘制曲线。Draw the curve by importing the file by loading the file, parsing the data in the file, and drawing the curve according to the parsed data.importDatasetvoid MainWindow::OnImportDataset(){ QString filepath = QFileDi.原创 2020-07-20 22:18:46 · 185 阅读 · 0 评论 -
C++ SQLite(basic knowledge)
SQLite,是一款轻型的数据库,是遵守ACID的关联式数据库管理系统,它的设计目标是嵌入式的,而且目前已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够了。它能够支持Windows/Linux/Unix等等主流的操作系统,同时能够跟很多程序语言相结合,比如Tcl、C#、PHP、Java等,还有ODBC接口,同样比起Mysql、PostgreSQL这两款开源世界著名的数据库管理系统来讲,它的处理速度比他们都快。SQLite第一个Alpha版本诞生于2000年5月。原创 2020-07-14 22:20:06 · 295 阅读 · 0 评论 -
C++ QT TXT2PDF
在CSDN博客上,你可以看到很多关于QT 导出PDF报告的相关技术文档。今天,我实现了在PDF中生成多页报表。On the CSDN blog, you can see a lot of technical documentation about QT exporting PDF reports.Today, I implemented generating multi-page reports in PDF.首先,读取*.log日志文件,通过代码生成PDF文件。先看看结果: First,原创 2020-07-13 22:01:23 · 312 阅读 · 0 评论 -
C++ (-1)this is a problem
In the recent project, the judgment condition of the for loop appeared -1. A strange problem appeared.int a = 0;int b = 1;cout << a - b;result : -----------> 18446744073709551615 I really hadn't thought of that problem.If you have a g..原创 2020-06-02 20:09:51 · 349 阅读 · 0 评论 -
Use ---Tesseract4---in the QTcreator(Using MSV2015)
tesseract是一个比较流行的OCR识别库,但是对于tesseract在qt中如何使用呢?为什么要将它配置在QT下呢,您也完全可以将QT配置在Visual Studio下,但是对于跨平台的软件工程而言,Visual Studio不是一个很好的选择。对于OCR识别为什么不选择深度学习呢?主要原因在于深度学习的模型很大程度都是基于Python的,依赖性较强,而且执行效率是个很大的问题。如果您想要实现C++与Python文件的深度学习调用,可以参考我的博客:(C++调用基于Python3.7.4+Tenso.原创 2020-06-01 21:27:19 · 770 阅读 · 1 评论 -
C++ Exception catching and exception handling(2)
今天依旧说一下C++的异常处理,你可以参考我的上一篇博客:https://blog.csdn.net/m0_37690102/article/details/106389177---->Today,I still talk about c + + exception handling, you can refer to my last blog: https://blog.csdn.net/m0_37690102/article/details/106389177C++的异常处理机制确实做的不够原创 2020-05-28 19:09:52 · 905 阅读 · 0 评论 -
C++ Exception catching and exception handling
同学建议,在写博客的时候将对应的中文也补充上,可以增加博客的可读性,后面加入这部分,如果您有更好的建议,可以给我留言或者私信我,非常感谢您的反馈。--->The students suggested that the corresponding Chinese should be added when writing the blog to improve the readability of the blog. If you have better Suggestions, please lea原创 2020-05-27 22:37:29 · 271 阅读 · 0 评论 -
C++ and QT SerialPort demo
Serial port is a tool that PC often interacts with MCU.Then,I'm going to write a simple demo with C++ and QT.I mainly introduce the code , UI design, please solve by yourself.Let's go:import the lib.----->#include <QtSerialPort\qserialport.h&原创 2020-05-20 22:14:04 · 1198 阅读 · 0 评论 -
Python GUI development
Today,I will introduce some of the gadgets I made during my first year of graduate study.We all know that Python is popular these days.Python is a force in artificial intelligence.Here is a way to encapsulate your work into a software interface.I'll write原创 2020-05-17 11:27:28 · 424 阅读 · 0 评论 -
QT-C++调用Python文件,实现深度学习的交互调用
0.本机环境:WIN10*641.下载安装python3.7.4路径如下:C:\Python3.7.42.修改pro文件INCLUDEPATH += C:\Python3.7.4\include LIBS += -LC:\Python3.7.4\libs\-lpython37_d3.python文件修改4.C++调用#pragma push_macro("slots")#undef slots#include <Python.h>#pragma .原创 2020-05-12 09:34:54 · 3047 阅读 · 1 评论