摘要:
本图来自网络 阅读全文
摘要:
1.下载QtCipherSqlitePluginhttps://github.com/devbean/QtCipherSqlitePlugin2.利用QT Creator编译QtCipherSqlitePlugin应用QT Creator打开QtCipherSqlitePlugin.pro,然后利用 阅读全文
摘要:
1. string 转换为 numberstd::stoi: string 型变量转换为 int 型变量 std::stol: string 型变量转换为 long 型变量 std::stoul:string 型变量转换为 unsigned long 型变量 std::stoll: string 型 阅读全文
摘要:
std::forward : 通常是用于完美转发的,它会将输入的参数原封不动地传递到下一个函数中,这个“原封不动”指的是,如果输入的参数是左值,那么传递给下一个函数的参数的也是左值;如果输入的参数是右值,那么传递给下一个函数的参数的也是右值。std::remove_reference_t : 是一个 阅读全文
摘要:
主要是解决找不到dll的问题1. VS中修改调试时PATH目录2. VS Code中修改调试时PATH目录 阅读全文
摘要:
1.问题描述-- Downloading https://repo.msys2.org/msys/x86_64/libtool-2.4.6-9-x86_64.pkg.tar.xz;https://www2.futureware.at/~nickoe/msys2-mirror/msys/x86_64/ 阅读全文
摘要:
#include <iomanip> #include <iostream> #include <string> #include <sstream> #include <locale> #include <codecvt> #include <limits> // #include <glm/gl 阅读全文
摘要:
# set(PKG_CONFIG_EXECUTABLE "F:/vcpkg/packages/pkgconf_x64-windows/tools/pkgconf/pkgconf.exe") #set(PKG_CONFIG_USE_CMAKE_PREFIX_PATH ON) set(PKG_CONFI 阅读全文
摘要:
参考:https://www.bbsmax.com/A/ZOJPNNEadv/# 指定库头文件所在路径 FIND_PATH(calc_INCLUDE_DIR calc_interface.h ${CMAKE_CURRENT_SOURCE_DIR}/ext/calc/include) # 指定库文件所 阅读全文
摘要:
GitHub使用1. PortableGit下载2. PortableGit安装3. 环境变量设置GIT_HOME D:\GreenSoftware\PortableGitPATH %GIT_HOME%\cmd4. 配置Git以管理员的身份运行git-bash.exe 4.1. 在本地创建ssh k 阅读全文
摘要:
#include <iostream> #include <string> int main() { std::string jsonStr = R"delimiter( { "name": "James", "nickname": "good boy" } )delimiter"; std::co 阅读全文
摘要:
参考:C++ REST SDK中的异步任务库PPLX #include <iostream> #include <future> #include <string> #include <sstream> #include <stdexcept> #include <functional> #incl 阅读全文
摘要:
promise-cpp是一种 C++ promise/A+ 库#include <iostream> #include <future> #include <string> #include <sstream> #include <stdexcept> #include <functional> # 阅读全文
摘要:
1. Duration Types2. Clocks3. Timepoint Types4. Calendrical Types5. Time Type hh_mm_ss6. Hours Utilities 阅读全文
摘要:
/************************************************************************/ /* OGRFromOGCGeomType() */ /*********************************************** 阅读全文
摘要:
转自:https://blog.csdn.net/liulilittle/article/details/127697458#include <locale> #include <codecvt> #include <string> #include <vector> #if _MSC_VER >= 阅读全文
摘要:
摘自:https://cloud.tencent.com/developer/article/20260431) C++11中引入了六种内存约束符用以解决多线程下的内存一致性问题(在头文件<atomic>中),其定义如下:typedef enum memory_order { memory_orde 阅读全文
摘要:
1) OpenGL APIhttps://docs.gl/gl4/glUniform1-1) GLSL数据类型https://zhuanlan.zhihu.com/p/5579071951-2)纹理:https://blog.csdn.net/ht_vIC/article/details/12369 阅读全文
摘要:
std::string readText(std::string &filename) { std::string shaderCodeStr(""); std::ifstream shaderFile; shaderFile.exceptions(std::ifstream::failbit | 阅读全文
摘要:
std::map<std::string, uint32_t> dictionary std::set<const std::string *> keySet; // std::back_inserter(keyVector) std::transform(dictionary.begin(), d 阅读全文
摘要:
1) IO#include <iostream> // std::cin, std::cout, std::ios#include <sstream>2) 字符串using namespace std::string_literals; // using namespace std::string_ 阅读全文
摘要:
GIS开源组件编译系列 (01)CentOS7环境中编译GDAL3.5 其编译的组件有sqlite、libiconv、protobuf、libdeflate、LZMA2、zstd、pcre2、tiff、openssl、curl、Proj、Geos、swig、Hadoop、hdf5、netcdf、po 阅读全文
摘要:
1. 先在一台能上外网的CentOS7上下载安装包 [root@server101 root]# yum -y install yum-utils [root@server101 root]# mkdir dep [root@server101 root]# cd dep [root@server1 阅读全文
摘要:
方法一:#include <stdio.h> #include <stdlib.h> #include <fstream> #include <string> // size_t readBinaryFile(const char *filename, unsigned char *&data) { 阅读全文
摘要:
参考:https://blog.csdn.net/wangqinghao/article/details/7245851https://www.codenong.com/7241871/1. std::stringstream转换为std::vector<char>// std::stringstr 阅读全文
摘要:
1.函数指针 typedef unsigned int bool; typedef bool(*pCopySDMMC2Mem)(int, unsigned int, unsigned short, unsigned int*, bool); typedef void (*pBL2Type)(void 阅读全文
摘要:
1. 构成2. 建设内容3. 技术路线4. 实景三维数据库 阅读全文
摘要:
转自 http://www.sparkmap.cn/portal/postList.html无人机航拍照片定位系列(01)算法理论(02)数据处理(03)Cesium实现无人机航拍照片定位(04)Java实现无人机航拍照片定位看了这些文章,这种定位方法有稍微的偏差,主是要地形或建筑物有一点的高度,在 阅读全文
摘要:
阅读全文
摘要:
参考:https://blog.csdn.net/jialong_chen/article/details/118497495《Springer.3D Mesh Processing and Character Animation.With Examples Using OpenGL, OpenMe 阅读全文
摘要:
pqViewFrame *pqMultiViewWidget::newFrame(vtkSMProxy *view) { pqViewFrame *frame = new pqViewFrame(); QObject::connect(frame, SIGNAL(buttonPressed(int) 阅读全文
摘要:
1.VTK的管线技术VKT的可视化过程就是数据在管线中流动,被管线不同的对象处理,最终以图形的方式表现出来。可视化模型就是把用户输入的原始数据,经过变换,成为图形模型可以接受的VTK自定义的数据集的过程。 处理对象包括:(1) vtkDataSource(源对象)数据生成的源头,数据来源主要包括从磁 阅读全文
摘要:
可以对于二进制数据或文件进行分析,也提供了VS Code的插件 阅读全文
摘要:
BSON [bee·sahn]是Binaryary JSON的缩写,是类似于JSON数据结构的二进制编码的序列化文档。像JSON一样,BSON支持数组、对象的嵌套,BSON还扩展了JSON的数据类型,如:BSON具有日期类型和BinData类型。看一个例子: { name:"lemo", age:" 阅读全文
摘要:
{ "[json]": { "editor.defaultFormatter": "vscode.json-language-features" }, "[html]": { "editor.defaultFormatter": "HookyQR.beautify" }, "[javascript] 阅读全文
摘要:
• The object space is a domain where objects are modelled and assembled.• The world space is where objects are positioned and animated through appropr 阅读全文
摘要:
In this chapter all Cartesian coordinate systems are right-handed, and the vertical axis is always the y-axis 1. 齐次坐标--Homogeneous Coordinates 2. 二维变换 阅读全文
摘要:
1. 概念 1)复数的定义 3)复数与标量的乘法--Multiplying a Complex Number by a Scalar 4)复数的叉乘--Product of Complex Numbers 5)复数的平方--Square of a Complex Number 6)复数的模—Norm 阅读全文
摘要:
1. 概念 1)矩阵的维度--Matrix Dimension or Order 2)方形矩阵--Square Matrix 行与列个数相等的矩阵 3)列矢量--Column Vector 只有一列元素的矩阵 4)行矢量--Row Vector 只有一行元素的矩阵 4)空矩阵--Null Matri 阅读全文