天宫鹤

11 2022 档案

Qt应用程序使用拖放打开文件
摘要:1.在mainwindow.h文件中添加函数声明: protected: void dragEnterEvent(QDragEnterEvent *event) override; // 拖动进入事件 void dropEvent(QDropEvent *event) override; // 放下 阅读全文

posted @ 2022-11-21 20:36 GoGrid 阅读(192) 评论(0) 推荐(0) 编辑

【Qt】警告Missing reference in range-for with non trivial type
摘要:Missing reference in range-for with non trivial type (QUrl) 警告 原始代码如下: for (auto url : urls) { QSharedPointer<QNetworkReply> reply(qnam.get(QNetworkRe 阅读全文

posted @ 2022-11-12 16:56 GoGrid 阅读(166) 评论(0) 推荐(0) 编辑

统计开始目录及其子目录下的指定类型文件中的单词(使用多线程、并发多线程(mappedReduced函数)进行速度对比)
摘要:#include <QList> #include <QMap> #include <QTextStream> #include <QString> #include <QStringList> #include <QDir> #include <QElapsedTimer> #include <Q 阅读全文

posted @ 2022-11-12 08:25 GoGrid 阅读(31) 评论(0) 推荐(0) 编辑

static_cast和dynamic_cast详解(转载,不错的文章就转载了,作为收藏吧)
摘要:派生类不仅有自己的方法和属性,同时它还包括从父类继承来的方法和属性。当我们从派生类向基类转换时,不管用传统的c语言还是c++转换方式都可以百分百转换成功。但是可怕是向下转换类型,也就是我们从基类向派生类转换,当我们采用传统的C语言和c++转换时,就会出现意想不到的情况,因为转换后派生类自己的方法和属 阅读全文

posted @ 2022-11-06 18:40 GoGrid 阅读(144) 评论(0) 推荐(0) 编辑

解决OpenCV 4描述符匹配器(cv::DescriptorMatcher)create函数的参数类型问题
摘要:1.在OpenCV 4.6.0中函数签名如下: static Ptr<DescriptorMatcher> cv::DescriptorMatcher::create(const String & descriptorMatcherType) static Ptr<DescriptorMatcher 阅读全文

posted @ 2022-11-06 17:31 GoGrid 阅读(625) 评论(0) 推荐(0) 编辑

特征匹配(提取和匹配描述符FeatureDetector&DescriptorExtractor)
摘要:void featureMatch() { cv::TickMeter meter; meter.start(); Mat image1 = imread(MYPICTUREPATH "lena.jpg"); Mat image2 = imread(MYPICTUREPATH "lena_face. 阅读全文

posted @ 2022-11-05 20:48 GoGrid 阅读(185) 评论(0) 推荐(0) 编辑

读写FileStorage
摘要:using namespace std; using namespace cv; 1.读FileStorage void rFileStorage() { FileStorage fs; fs.open("d:/datum/test/test.json", FileStorage::READ | F 阅读全文

posted @ 2022-11-05 14:33 GoGrid 阅读(51) 评论(0) 推荐(0) 编辑

模板匹配(createTrackbar函数这样用)
摘要:一、模板匹配 模板匹配(TemplateMatching)就是在一幅图像中寻找和模板图像(template)最相似的区域,该方法原理简单计算速度快,能够应用于目标识别,目标跟踪等多个领域。 二、原理 1、cv::TM_SQDIFF:该方法使用平方差进行匹配,因此最佳的匹配结果在结果为0处,值越大匹配 阅读全文

posted @ 2022-11-05 08:51 GoGrid 阅读(259) 评论(0) 推荐(0) 编辑

导航