- 博客(148)
- 资源 (39)
- 收藏
- 关注
原创 孙鑫VC++第一章 Windows程序内部运行机制
winmain函数是程序入口函数,由系统调用。LPSTR lpCmdLine, // 空终止的字符串,指定传递给应用程序的命令行参数int nCmdShow // 指定窗口应该如何显示。
2023-05-14 17:11:33
509
原创 Q_D以及Q_Q指针理解
作用隐藏接口具体实现细节提高程序编译速度最大程度实现二进制兼容二进制兼容动态库:动态链接到库的前一个版本的程序继续与库的新版本一起运行而不需要重新编译,则库是二进制兼容的。程序需要重新编译以使用新版本的库运行,但不需要任何进一步的修改,则该库是源代码兼容的。如何使动态库二进制兼容:就要求每一个结构以及每一个对象的数据模型保持不变。所谓“数据模型保持不变”,就是不能在类中增加、删除数据成员方法:1.预先分配若干个保留空间,后续添加数据使用保留空间(使用位域:int n:20)
2023-03-24 18:40:54
603
原创 Windows+vs209+Ogre编译
1. 准备Visual Studio (VS2019) CMake https://cmake.org/download/DirectX SDK DXSDK_Jun10.exe 后安装即可。DXSDK_Jun10.exe下载地址:https://www.microsoft.com/en-us/download/details.aspx?id=6812Ogre编译所需要的依赖项:ogredeps ;https://bitbucket.org/cabalistic/...
2021-05-20 14:44:09
674
1
原创 qt.qpa.plugin: Could not find the Qt platform plugin “windows“ in
使用 MSVC 运行 Qt 程序时提示 qt.qpa.plugin: Could not find the Qt platform plugin “windows“ in解决方法:在环境变量的系统变量中,添加QT_PLUGIN_PATH一项,值为 Qt 安装目录下的 MSVC 的 plugins 文件夹,例如D:\Qt\5.12.10\msvc2017_64\plugins...
2021-04-26 11:35:42
16895
5
转载 OpenGL之gult/freeglut/glew/glfw/glad的联系与区别
转https://blog.youkuaiyun.com/libaineu2004/article/details/105879521转https://blog.youkuaiyun.com/qq_40565033/article/details/107715956?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-0&spm=1001.2101.3001.42421.OpenGL总览OpenGL只有框架没有实现,换句话说就是Op..
2021-03-30 15:56:30
8942
原创 QT + OpenGL + Core注意 Mac
https://blog.youkuaiyun.com/weixin_30528371/article/details/95876285QOpenGLWidget with QOpenGLFunctions_3_3_Core is initialized failed on Mac OShttps://forum.qt.io/topic/92158/qopenglwidget-with-qopenglfunctions_3_3_core-is-initialized-failed-on-mac-os...
2021-03-27 15:02:00
623
原创 Qt - QComboBox的用户名+图标控件管理
方法一:Qt之基于QComboBox的用户名控件QAccount方法二: m_pAccountListWidget = new QListWidget(this); //QListWidget对象 m_pUserIdComboBox->setModel(m_pAccountListWidget->model()); m_pUserIdComboBox->setView(m_pAccountListWidget); ...
2021-02-20 15:21:17
495
原创 QT使用总结2
1. VTK1.1QVTKWidget控件显示二维图片https://blog.youkuaiyun.com/learn_sunzhuli/article/details/458301351.2QT+VTK: 如何在QT中显示VTK生成的图像https://blog.youkuaiyun.com/inter_peng/article/details/545732421.3Vtk读取并显示图像https://wenku.baidu.com/view/3cf32812581b6bd97f19...
2020-10-10 09:56:30
709
原创 QT使用总结3
1. QCustomPlot 画折线图https://blog.youkuaiyun.com/weixin_36037895/article/details/549444022.更新国际化:lupdate EWhalesShaker.pro -ts Language_zh.ts3.QTextEdit,QLineEdit删除光标前一个字符QTextCursor cursor=ui->textEdit->textCursor();//得到当前text的光标if(cursor.hasSel
2020-10-10 09:56:11
673
原创 QT 回调函数 function bind 成员函数作为回调函数
回调函数就是一个通过函数指针调用的函数。如果把一个函数的指针(地址)作为参数传递给另一个函数,当这个指针被用来调用其所指向的函数时,我们就说这是回调函数。回调函数不是由该函数的实现方直接调用,而是在特定的事件或条件发生时由另外的一方调用的,用于对该事件或条件进行响应。举例说明:#include <stdio.h> void print(); int main(void) { void (*fuc)(); fuc = print ; f...
2020-10-10 09:55:35
2338
原创 QT 常见控件样式表
1.QToolButonQToolButton{ min-width:80px; min-height:32px; } QToolButton{ color:rgb(255, 255, 255); min-height:20; border-style:solid; border-top-left-radius:2px; border-top-right-radius:2px; background: qlineargradient(x1: 0, y1: 0,
2020-10-10 09:55:12
1301
原创 QT 常见类型转换
1.QString 转换为 const char * QString command = "ewhales_rtc -s "; std::string str = command.toStdString(); const char* ch = str.c_str();2.QString 转换为 char * 将 QString 转 char *,需要用到 QByteArray 类,因为 char * 最后都有一个'\0'作为结束符,而采用QString::toLati.
2020-10-10 09:54:39
1094
原创 QT使用总结1
1. Dlib+OpenCV交叉编译移植到ARM64-v8平台https://blog.youkuaiyun.com/kaychangeek/article/details/803653202. ubuntu16.04下opencv3.2和opencv_contrib编译安装https://blog.youkuaiyun.com/CupidYzw97/article/details/748574673. 使用OpenCV与gcc和CMakehttps://www.w3cschool.cn/opencv/open
2020-10-09 16:31:28
178
原创 手势识别和人脸识别相关网站
1. 手势识别1.1.基于卷积神经网络的手势识别研究 --- 硕士论文http://airl.csu.edu.cn/PDFs/shuoshi_yzb.pdf1.2.手势交互在汽车领域的应用https://zhuanlan.zhihu.com/p/424641851.3. 动作识别资料https://github.com/hassony2/inria-research-wiki1.4.评估一些公开数据集上的手势估计性能https://github....
2020-10-09 16:25:24
1505
1
原创 TOF / PCL
1. 3D ToF 三维场景距离(景深)测量系统简介http://www.ti.com.cn/cn/lit/an/zhca655/zhca655.pdf2.自动驾驶中的时空坐标系https://cloud.tencent.com/developer/article/10632703. 浅谈激光雷达http://www.wangdali.net/lidar/4.项目总结(1.TOF相机及标定相关)https://www.cnblogs.com/chenbaol...
2020-10-09 16:21:03
352
原创 ubuntu系统编译交叉开发环境和QT
https://zhidao.baidu.com/question/397186338.htmlIn function ‘open’,inlined from ‘main’ at ts_calibrate.c:227:/usr/include/bits/fcntl2.h:51: error: call to ‘__open_missing_mode’ declared with attribute error: open with O_CREAT in second argument needs 3
2020-10-09 16:19:38
165
原创 Ubuntu遇到的问题和解决办法
系统没有正常关机,再次打开出现问题http://blog.youkuaiyun.com/angelpumpkin/article/details/77163609(最终解决可以解决的办法)修复Ubuntu系统出现的问题解决could not open lock file (系统没有正常关闭)https://www.cnblogs.com/ace-wu/p/6623150.htmlhttps://www.tecmint.com/fix-unable-to-lock-the-adminis.
2020-10-09 16:18:17
325
原创 安装VMware Tools(复制到window)
1.安装出现问题:http://blog.youkuaiyun.com/qq_33160271/article/details/59632471解决方法实现VMware中Ubuntu与主机Windows系统之间的相互复制与粘贴(公用粘贴板): 1、在虚拟机VMware的菜单栏选择 虚拟机-->安装VMware Tools...(我用的汉化版的VMware,若你用的非汉化的请找对应位置) 2、选中“安装VMware Tools...”之后可以下图路径找到。或者在/m...
2020-10-09 16:00:17
402
1
原创 Debian系统设置
1.Debian 9 中设置网络https://www.cnblogs.com/samgg/p/7712136.html2.NetworkConfigurationhttps://wiki.debian.org/NetworkConfiguration#Using_DHCP_to_automatically_configure_the_interface3.Debian9:配置网络和软件源https://blog.youkuaiyun.com/qq_36937234/article/de..
2020-10-09 15:48:15
251
原创 Ubuntu + PCL +VTk+Qt
1.安装QT creator ,不要用指令安装,下载原安装包进行安装2.安装依赖包:二,安装库sudo apt-get updatesudo apt-get install git build-essential linux-libc-devsudo apt-get install cmake cmake-guisudo apt-get install libusb-1.0-0-dev libusb-dev li...
2020-10-09 15:47:31
711
原创 Ubuntu 系统常见的配置
1. Ubuntu下安装并配置VS Code编译C++https://blog.youkuaiyun.com/qq_22186119/article/details/736180622. Ubuntu16.04(64bit)兼容32bit程序https://blog.youkuaiyun.com/zx7415963/article/details/546314823. Ubuntu 安装32位兼容库https://blog.youkuaiyun.com/wr132/article/details/5414201..
2020-10-09 15:46:10
138
转载 vs2019配置OpenGL
转自 https://blog.youkuaiyun.com/csr_monkey/article/details/89069767下载地址:https://www.opengl.org/resources/libraries/glut/glutdlls37beta.zip1.安装c++开发组件和NuGet包管理器 这个可以打开Visual Studio Installer查看。...
2020-10-09 15:44:14
3700
1
原创 SVN 转 GIT
SVN 转为 Git 步骤:1. 查看分支$ svn ls svn://192.168.1.126/lngi2.0 --verbose 2450 admin 4▒▒ 01 11:17 ./ 2442 b 2▒▒ 25 10:10 Document/ 1363 c 1▒▒ 31 2018 Software/ 2450 d 4▒▒ 01 11:17 br...
2020-05-11 11:02:39
205
转载 Protobuf协议
转自:https://my.oschina.net/cqcbw/blog/3048689 Protobuf应用广泛,尤其作为网络通讯协议最为普遍。本文将详细描述几个让人眼前一亮的protobuf协议设计,对准备应用或已经应用protobuf的开发者会有所启发,甚至可以直接拿过去用。 这里描述的协议设计被用于生产环境的即时通讯、埋点数据采集、消息推送、redis和mysql数据代理。 Bw...
2020-04-17 16:19:18
862
转载 Keras封装实现经典深度网络框架 VGG-16, ZF-Net,Alex-Net,LeNet,Google-Net,ResNet, DenseNet-50
版权声明:本文为优快云博主「Nani_xiao」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.youkuaiyun.com/xiao_lxl/article/details/90902323很多深度学习网络训练都是在VGG-16, ZF-Net,Alex-Net,LeNet,Google-Net,ResNet, DenseNet...
2019-12-27 15:58:15
491
转载 Python二维数组与三维数组切片详解
转自::https://blog.youkuaiyun.com/zgcr654321/article/details/88015849版权声明:本文为优快云博主「一骑走烟尘」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.youkuaiyun.com/zgcr654321/article/details/88015849如果对象...
2019-09-16 15:38:24
996
转载 python中数组切片[:,i] [i:j:k] [:-i] [i,j,:k]
转自https://blog.youkuaiyun.com/qq_41973536/article/details/82690242逗号“,”分隔各个维度,“:”表示各个维度内的切片,只有:表示取这个维度的全部值,举例说明如下1.二维数组X[:,0]取所有行的第0个数据,第二维下标位0的所有数据,第0列(从0开始)X[:,1] 取所有行的第1个数据X[:,1:]第一维全部取,即所有...
2019-07-29 11:47:08
936
转载 darkflow安装
转自原文:https://blog.youkuaiyun.com/qq_35451572/article/details/803045930. 下载安装包git clone https://github.com/thtrieu/darkflow1注:安装之前需要安装好:Python3、tensorflow 1.0、numpy, opencv 3,如果没有安装请先安装好。1. 安装cd ...
2019-07-23 09:48:21
568
转载 ubuntu vscode卸载与安装
转自https://blog.youkuaiyun.com/qq_37925454/article/details/84229283ubuntu 16.04hellboy@hellboy-ubuntu:~$ sudo dpkg -l code[sudo] password for hellboy:Desired=Unknown/Install/Remove/Purge/Hold| Sta...
2019-07-22 11:15:48
2198
转载 C++ 库研究笔记——Linux下创建文件夹
转自https://blog.youkuaiyun.com/rathome/article/details/78870694查了很多,都不怎么完成,后在stackoverflow 上了一个失推荐不多的方案,发现是最有效的。如创建 “ab/b/c” 这个文件夹,其中,ab文件夹不要求事先不存在(若不存在,先创建)#pragma once#include <iostream>#in...
2019-07-16 15:51:53
476
转载 linux下判断文件和目录是否存在[总结]
1、前言 工作中涉及到文件系统,有时候需要判断文件和目录是否存在。我结合APUE第四章文件和目录,总结一下如何正确判断文件和目录是否存在,方便以后查询。2、stat系列函数 stat函数用来返回与文件有关的结构信息。stat系列函数有三种情况,分别对应文件名称、文件描述符和符号链接文件。stat结构描述了文件的属性,主要包括文件的类型、文件大小等等。详细stat结构如下所示:...
2019-07-16 15:43:02
350
64-bit ARM (AArch64) debian 系统安装手册,中文版
2018-11-12
Leastsquares estimation of anisotropic similarity transformations
2019-09-21
Hand Action Detection from Ego-centric
2019-07-22
Real-time image stitching for automotive 360º vision systems.pdf
2019-05-30
基于 PCA 的运动数据相似性计算
2019-01-15
基于光流空间分布的步态识别方法
2019-01-15
二维运动估计
2019-01-15
Learning to Estimate 3D Hand Pose from Single RGB Images
2019-01-07
Depth-Based Hand Pose Estimation: Methods, Data, and Challenges
2019-01-02
3D Gesture Recognition and Tracking for Next Generation of Smart Devices
2019-01-02
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人