上一页 1 2 3 4 5 6 ··· 34 下一页
摘要: git clone --recurse-submodules https://github.com/cvg/DeepLSD.git 直接用 cd DeepLSDbash quickstart_install.shmkdir weightswget https://www.polybox.ethz.c 阅读全文
posted @ 2024-03-12 20:44 太一吾鱼水 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 使用matlab2021b读取hdf5文件 info = h5info('00030043.hdf5');data_df = h5read('00030043.hdf5','/df');data_angle = h5read('00030043.hdf5','/line_level');b=resh 阅读全文
posted @ 2024-03-11 22:41 太一吾鱼水 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 下载源码:git clone --recurse-submodules https://github.com/graphdeco-inria/gaussian-splatting.git 利用conda创建虚拟环境:conda create -n gs python=3.8 切换虚拟环境:conda 阅读全文
posted @ 2024-02-03 19:30 太一吾鱼水 阅读(345) 评论(0) 推荐(0) 编辑
摘要: https://towardsdatascience.com/a-comprehensive-overview-of-gaussian-splatting-e7d570081362 3D Gaussian Splatting测试了一个精灵4无人机飞的MOV格式视频,重建效果如下: 对应的ply点云效 阅读全文
posted @ 2024-02-02 22:16 太一吾鱼水 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 深度学习中存在一些问题,包括但不限于以下几个方面: 贝叶斯理论与深度学习:深度学习模型的训练和推断方法通常基于概率论和统计学原理,但与贝叶斯推理理论的融合仍存在一些挑战和问题。 解释性和可解释性:深度学习模型往往被视为“黑匣子”,其决策过程不太可解释。如何提高深度学习模型的解释性,使其决策过程和结果 阅读全文
posted @ 2024-02-02 14:15 太一吾鱼水 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1 import os 2 import pickle 3 import numpy as np 4 import cv2 5 import scipy.io as sio 6 from tqdm import tqdm 7 8 data_root = 'D:/dl_exp/Labeling_lin 阅读全文
posted @ 2024-01-25 17:26 太一吾鱼水 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 问题1: 后台缓存收回进程无法释放上下文[/BUSINESS的缓存的[10]%-请考虑增加缓存的最大大小。 原因:出现该问题是Tomcat启动时,占用的缓存较大,Tomcat默认的缓存是10000KB.解决:需要调整Tomcat目录下\conf\context.xml文件中的缓存的最大值,需要添加在 阅读全文
posted @ 2023-12-18 20:49 太一吾鱼水 阅读(600) 评论(0) 推荐(0) 编辑
摘要: from sklearn.neighbors import KDTree from os.path import join, exists, dirname, abspath import numpy as np import os, glob, pickle import sys BASE_DIR 阅读全文
posted @ 2023-12-16 09:42 太一吾鱼水 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 点击球面位置,获取经纬度坐标和高程。 代码: 1 var annotations; 2 function axToolCoordinate(layer) { 3 var handler=new Cesium.ScreenSpaceEventHandler(viewer.canvas); 4 anno 阅读全文
posted @ 2023-12-13 17:46 太一吾鱼水 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 1.切割单体化 2.火柴盒模型,建筑轮廓多边形+高程 拉伸 3.特征线组合优化 4.拓扑强化+模型库 5.空间划分 (1)二维空间划分+影像分类语义 (2)三维空间划分+面元选择 (3)三维空间划分+胞腔(体元)标记 6.逆程序化建模 CityEngine 阅读全文
posted @ 2023-10-13 13:37 太一吾鱼水 阅读(77) 评论(2) 推荐(1) 编辑
摘要: 1.功能说明: 鼠标绘制多边形进行查询,通过多边形范围,调用Geoserver发布的WFS服务,查询相交的地图要素,将返回结果高亮显示。 单击高亮显示的要素,显示要素的属性信息。 2.网页html代码: <!DOCTYPE html> <html lang="en"> <head> <meta ch 阅读全文
posted @ 2023-09-11 22:51 太一吾鱼水 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: Python 3.7 pip install d2l==0.14.4 pip install pandas==1.3.5 Matplotlib 的最新稳定版本为 3.4,但是在 Python 3.7 版本中,我们可以使用的 Matplotlib 版本是 3.3.4 pip install jobli 阅读全文
posted @ 2023-09-10 21:33 太一吾鱼水 阅读(524) 评论(0) 推荐(0) 编辑
摘要: html代码 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 6 <meta name 阅读全文
posted @ 2023-08-31 16:49 太一吾鱼水 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 1. 查看硬件: 主要是显卡型号,确认已装显卡驱动 。使用nvdia-smi查看支持的最高版本cuda toolkit.2. 安装cuda toolkit 3. 安装cudnn,将cudnn中的 bin include lib 在c-program files-GPU进行替换。4. 安装anacon 阅读全文
posted @ 2023-08-29 22:41 太一吾鱼水 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 将shp文件转换为cesium可以加载的geojson文件,在线转换工具,使用cesium的GeoJsonDataSource接口类,根据建筑物高度上色加载geojson文件。 注意shp文件包含_Height字段。代码如下: <!DOCTYPE html> <html lang="en"> <he 阅读全文
posted @ 2023-08-25 16:38 太一吾鱼水 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 引用:Sandcastle-header.js, 需要说明一个问题,采用http-server发布,相对路径和利用tomcat发布相对路径不一样。tomcat似乎更好理解一些,比如源码为index文件,同级目录就是直接写文件名。 <!DOCTYPE html> <html lang="en"> <h 阅读全文
posted @ 2023-08-25 16:31 太一吾鱼水 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 本地的3dtiles模型采用ContextCapture 19生成. 利用Cesium实验室V3.08对OSGB格式转换到3dtiles,得到的结果加载时老是报 TypeError: Cannot read properties of undefined (reading 'updateTransf 阅读全文
posted @ 2023-08-25 16:28 太一吾鱼水 阅读(2250) 评论(2) 推荐(0) 编辑
摘要: 在根目录下新建bucket.css @import"../Build/CesiumUnminified/Widgets/widgets.css";@import"../Build/CesiumUnminified/Widgets/lighter.css";html{height:100%}body{ 阅读全文
posted @ 2023-08-25 16:28 太一吾鱼水 阅读(436) 评论(2) 推荐(0) 编辑
摘要: 申请成为天地图开发者,创建应用 编写代码: <!DOCTYPE html> <html lang="en"> <head> <!-- Use correct character set. --> <meta charset="utf-8" /> <!-- Tell IE to use the lat 阅读全文
posted @ 2023-08-25 16:27 太一吾鱼水 阅读(773) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://space.bilibili.com/597185371/channel/collectiondetail?sid=1650498 利用Geoserver发布地图服务,服务类型WMS。 采用Cesium调用wms服务,源码如下: 1 <!DOCTYPE html> 2 <h 阅读全文
posted @ 2023-08-24 10:57 太一吾鱼水 阅读(711) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 34 下一页