会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Truman001
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
···
18
下一页
2019年11月11日
无法删除文件,操作无法完成,因为其中的文件夹或文件已在另一程序中打开
摘要: https://blog.csdn.net/weixin_42080201/article/details/80312607
阅读全文
posted @ 2019-11-11 15:00 Truman001
阅读(453)
评论(0)
推荐(0)
2019年11月3日
计算机视觉,计算机图形学,数字图像处理的联系和区别
摘要: 1 如下表格,根据输入输出确定计算机图形学和数字图像处理的区别 2 根据下图,确定各个学科的联系与区别
阅读全文
posted @ 2019-11-03 15:05 Truman001
阅读(525)
评论(0)
推荐(0)
2019年10月21日
string根据特殊字符分割字符串
摘要: std::string test_str = "year,mon,day,hh"; std::vector res = splitwithstr(test_str, ','); for (int i=0; i splitwithstr(std::string &str,char ch) { std::string tmpstr = str+ch; std::vector res;...
阅读全文
posted @ 2019-10-21 19:46 Truman001
阅读(3945)
评论(0)
推荐(0)
Qt滚动条移到最下方
摘要: QScrollBar *vScrollBar = m_pLogListWidget->verticalScrollBar(); if (vScrollBar != NULL) { vScrollBar->setValue(vScrollBar->maximum()); }
阅读全文
posted @ 2019-10-21 19:40 Truman001
阅读(1593)
评论(0)
推荐(0)
Qt对话框去掉问号按钮
摘要: 下面两种方法均可让对话框的问号按钮去掉,如果其中一种不生效,可更换另一种 1 方法一 2 方法二
阅读全文
posted @ 2019-10-21 19:39 Truman001
阅读(4066)
评论(0)
推荐(0)
QT 界面刷新
摘要: 当更改完Qt的界面控件大小时,如果没有更新,可调用下列函数进行刷新界面 1 void QWidget::update() 2 void QWidget::repaint() 3 void QWidget::showNormal() 4 void resize(const QSize &) 例:thi
阅读全文
posted @ 2019-10-21 19:37 Truman001
阅读(5521)
评论(0)
推荐(0)
2019年10月6日
opencv学习笔记
摘要: 1 如何查看自己电脑上opencv版本 2
阅读全文
posted @ 2019-10-06 16:14 Truman001
阅读(112)
评论(0)
推荐(0)
2019年8月30日
std::thread的使用
摘要: 1 添加头文件#include <thread> 2 使用全局函数作为线程函数 3 使用类成员函数作为线程函数 4 使用lambda表达式作为线程函数 结果如下: 5 leetcode练习 题目描述:
阅读全文
posted @ 2019-08-30 17:17 Truman001
阅读(866)
评论(0)
推荐(0)
std::function的使用
摘要: 待添加
阅读全文
posted @ 2019-08-30 12:38 Truman001
阅读(186)
评论(0)
推荐(0)
2019年8月29日
Qt判断文件夹是否存在并新建文件夹
摘要: QString dir_str = "E:\CodeTest"; // 检查目录是否存在,若不存在则新建 QDir dir; if (!dir.exists(dir_str)) { bool res = dir.mkpath(dir_str); qDebug() << "新建目录是否成功" << r
阅读全文
posted @ 2019-08-29 15:11 Truman001
阅读(7554)
评论(2)
推荐(1)
上一页
1
···
3
4
5
6
7
8
9
10
11
···
18
下一页
公告