上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 参考:C++ REST SDK中的异步任务库PPLX #include <iostream> #include <future> #include <string> #include <sstream> #include <stdexcept> #include <functional> #incl 阅读全文
posted @ 2023-01-17 17:18 ParamousGIS 阅读(60) 评论(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 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 1. Duration Types2. Clocks3. Timepoint Types4. Calendrical Types5. Time Type hh_mm_ss6. Hours Utilities 阅读全文
posted @ 2023-01-17 09:10 ParamousGIS 阅读(27) 评论(0) 推荐(0) 编辑
摘要: /************************************************************************/ /* OGRFromOGCGeomType() */ /*********************************************** 阅读全文
posted @ 2023-01-03 11:07 ParamousGIS 阅读(301) 评论(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 阅读(117) 评论(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 阅读(233) 评论(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 阅读(236) 评论(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 阅读(30) 评论(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 阅读(961) 评论(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 阅读(192) 评论(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 阅读(93) 评论(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 阅读(104) 评论(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 阅读(326) 评论(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 阅读(77) 评论(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 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 1. 构成2. 建设内容3. 技术路线4. 实景三维数据库 阅读全文
posted @ 2022-11-28 15:18 ParamousGIS 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 转自 http://www.sparkmap.cn/portal/postList.html无人机航拍照片定位系列(01)算法理论(02)数据处理(03)Cesium实现无人机航拍照片定位(04)Java实现无人机航拍照片定位看了这些文章,这种定位方法有稍微的偏差,主是要地形或建筑物有一点的高度,在 阅读全文
posted @ 2022-11-21 11:43 ParamousGIS 阅读(471) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-11-16 11:32 ParamousGIS 阅读(38) 评论(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 阅读(702) 评论(0) 推荐(0) 编辑
摘要: pqViewFrame *pqMultiViewWidget::newFrame(vtkSMProxy *view) { pqViewFrame *frame = new pqViewFrame(); QObject::connect(frame, SIGNAL(buttonPressed(int) 阅读全文
posted @ 2022-11-02 15:43 ParamousGIS 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 1.VTK的管线技术VKT的可视化过程就是数据在管线中流动,被管线不同的对象处理,最终以图形的方式表现出来。可视化模型就是把用户输入的原始数据,经过变换,成为图形模型可以接受的VTK自定义的数据集的过程。 处理对象包括:(1) vtkDataSource(源对象)数据生成的源头,数据来源主要包括从磁 阅读全文
posted @ 2022-10-24 18:35 ParamousGIS 阅读(1340) 评论(1) 推荐(1) 编辑
摘要: 可以对于二进制数据或文件进行分析,也提供了VS Code的插件 阅读全文
posted @ 2022-09-01 09:48 ParamousGIS 阅读(444) 评论(0) 推荐(0) 编辑
摘要: BSON [bee·sahn]是Binaryary JSON的缩写,是类似于JSON数据结构的二进制编码的序列化文档。像JSON一样,BSON支持数组、对象的嵌套,BSON还扩展了JSON的数据类型,如:BSON具有日期类型和BinData类型。看一个例子: { name:"lemo", age:" 阅读全文
posted @ 2022-07-22 16:15 ParamousGIS 阅读(207) 评论(0) 推荐(0) 编辑
摘要: { "[json]": { "editor.defaultFormatter": "vscode.json-language-features" }, "[html]": { "editor.defaultFormatter": "HookyQR.beautify" }, "[javascript] 阅读全文
posted @ 2022-07-22 10:48 ParamousGIS 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-23 16:53 ParamousGIS 阅读(29) 评论(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 阅读(158) 评论(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 阅读(124) 评论(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 阅读(946) 评论(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 阅读(959) 评论(0) 推荐(0) 编辑
摘要: 1. 概念 矢量表示的是方向与大小,并不表示位置 1)矢量的分量--components 3)矢量的模--magnitude 4)位置矢量--Position Vectors 5)单位矢量--Unit Vectors 2. 操作 1)缩放--Scaling a Vector 2)加减--Vector 阅读全文
posted @ 2022-05-10 19:02 ParamousGIS 阅读(1264) 评论(0) 推荐(0) 编辑
摘要: 1.二元一次方程组与行列式—Determinant 2.三元一次方程组与行列式—Determinant 3.行列式的相关概念 4.行列式的值的计算方法 1) 1阶行列式的值 2) 2阶行列式的值 3) 3阶行列式的值 4) 4阶行列式的值 5.行列式的属性 1)如果行列式含有一列或一行全为0,则行列 阅读全文
posted @ 2022-05-10 11:53 ParamousGIS 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 1.二维极坐标--2D polar coordinates 2.球形极坐标--Spherical Polar Coordinates 3.圆柱坐标--Cylindrical Coordinates 阅读全文
posted @ 2022-05-09 18:40 ParamousGIS 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/h2zZhou/p/5148487.html 阅读全文
posted @ 2022-05-09 18:12 ParamousGIS 阅读(1384) 评论(0) 推荐(0) 编辑
摘要: 1)当坐标是逆时针顺序时: 2)当坐标是顺时针顺序时: 阅读全文
posted @ 2022-05-09 17:55 ParamousGIS 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1.三角函数定义 2.三角函数变换 3.三角规则 4.复合角恒等式 5.倍角恒等式 6.乘角恒等式 7.半角恒等式 8.三角函数与周长的恒等式 阅读全文
posted @ 2022-05-09 16:57 ParamousGIS 阅读(704) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-09 16:49 ParamousGIS 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 1.交换律--Commutative Law The commutative law in algebra states that when two elements are linked through some binary operation, the result is independen 阅读全文
posted @ 2022-05-09 16:35 ParamousGIS 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 1.自然数--Natural Numbers 2.整数--Integers Numbers 3.有理数--Rational Numbers 4.无理数--Irrational Numbers 5.实数--Real Numbers 6.代数数与超越数--Algebraic and Transcende 阅读全文
posted @ 2022-05-09 16:15 ParamousGIS 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1.负数表示 2.负数加法 阅读全文
posted @ 2022-05-09 12:03 ParamousGIS 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 资料来自于: https://gitee.com/jishupang/vue3-knowledge-map 1.学前了解 2.基础知识 3.组件相关语法 4.高级语法 5.高级语法 6.配套工具 阅读全文
posted @ 2022-05-06 12:02 ParamousGIS 阅读(362) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页