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