上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 主要是解决找不到dll的问题1. VS中修改调试时PATH目录2. VS Code中修改调试时PATH目录 阅读全文
posted @ 2023-03-27 15:22 ParamousGIS 阅读(71) 评论(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 阅读(315) 评论(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 阅读(103) 评论(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 阅读(1272) 评论(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 阅读(219) 评论(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 阅读(42) 评论(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 阅读(22) 评论(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 阅读(67) 评论(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 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1. Duration Types2. Clocks3. Timepoint Types4. Calendrical Types5. Time Type hh_mm_ss6. Hours Utilities 阅读全文
posted @ 2023-01-17 09:10 ParamousGIS 阅读(28) 评论(0) 推荐(0) 编辑
摘要: /************************************************************************/ /* OGRFromOGCGeomType() */ /*********************************************** 阅读全文
posted @ 2023-01-03 11:07 ParamousGIS 阅读(336) 评论(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 阅读(131) 评论(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 阅读(285) 评论(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 阅读(347) 评论(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 阅读(33) 评论(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 阅读(1054) 评论(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 阅读(215) 评论(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 阅读(105) 评论(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 阅读(131) 评论(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 阅读(361) 评论(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 阅读(88) 评论(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 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 1. 构成2. 建设内容3. 技术路线4. 实景三维数据库 阅读全文
posted @ 2022-11-28 15:18 ParamousGIS 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 转自 http://www.sparkmap.cn/portal/postList.html无人机航拍照片定位系列(01)算法理论(02)数据处理(03)Cesium实现无人机航拍照片定位(04)Java实现无人机航拍照片定位看了这些文章,这种定位方法有稍微的偏差,主是要地形或建筑物有一点的高度,在 阅读全文
posted @ 2022-11-21 11:43 ParamousGIS 阅读(538) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-11-16 11:32 ParamousGIS 阅读(44) 评论(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 阅读(814) 评论(0) 推荐(0) 编辑
摘要: pqViewFrame *pqMultiViewWidget::newFrame(vtkSMProxy *view) { pqViewFrame *frame = new pqViewFrame(); QObject::connect(frame, SIGNAL(buttonPressed(int) 阅读全文
posted @ 2022-11-02 15:43 ParamousGIS 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 1.VTK的管线技术VKT的可视化过程就是数据在管线中流动,被管线不同的对象处理,最终以图形的方式表现出来。可视化模型就是把用户输入的原始数据,经过变换,成为图形模型可以接受的VTK自定义的数据集的过程。 处理对象包括:(1) vtkDataSource(源对象)数据生成的源头,数据来源主要包括从磁 阅读全文
posted @ 2022-10-24 18:35 ParamousGIS 阅读(1498) 评论(1) 推荐(1) 编辑
摘要: 可以对于二进制数据或文件进行分析,也提供了VS Code的插件 阅读全文
posted @ 2022-09-01 09:48 ParamousGIS 阅读(471) 评论(0) 推荐(0) 编辑
摘要: BSON [bee·sahn]是Binaryary JSON的缩写,是类似于JSON数据结构的二进制编码的序列化文档。像JSON一样,BSON支持数组、对象的嵌套,BSON还扩展了JSON的数据类型,如:BSON具有日期类型和BinData类型。看一个例子: { name:"lemo", age:" 阅读全文
posted @ 2022-07-22 16:15 ParamousGIS 阅读(227) 评论(0) 推荐(0) 编辑
摘要: { "[json]": { "editor.defaultFormatter": "vscode.json-language-features" }, "[html]": { "editor.defaultFormatter": "HookyQR.beautify" }, "[javascript] 阅读全文
posted @ 2022-07-22 10:48 ParamousGIS 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-23 16:53 ParamousGIS 阅读(31) 评论(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 阅读(166) 评论(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 阅读(143) 评论(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 阅读(1006) 评论(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 阅读(1044) 评论(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 阅读(1420) 评论(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 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 1.二维极坐标--2D polar coordinates 2.球形极坐标--Spherical Polar Coordinates 3.圆柱坐标--Cylindrical Coordinates 阅读全文
posted @ 2022-05-09 18:40 ParamousGIS 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/h2zZhou/p/5148487.html 阅读全文
posted @ 2022-05-09 18:12 ParamousGIS 阅读(1629) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页