上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: 一、常见图片格式 jpg (Joint Photographic Experts Group, JPEG) 有损压缩 png (Portable Network Graphics, PNG) 无损压缩 Alpha Channel for jpg/png png格式有透明层(alpha channel 阅读全文
posted @ 2022-08-24 21:46 达可奈特 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 深度学习关于数据层面的处理 数据下载 [官网/谷歌云盘/百度网盘] 数据处理 [将官方下载的原始数据转为易于模型训练的数据] 数据读取 [dataset.py包括Dataset类的具体实现] Dataset | | TrainDataset | | train | | validate | | Te 阅读全文
posted @ 2022-07-15 20:29 达可奈特 阅读(210) 评论(0) 推荐(0) 编辑
摘要: MVSNet文件格式 每个场景对应的项目文件夹应包含以下内容: . ├── images │ ├── 00000000.jpg │ ├── 00000001.jpg │ └── ... ├── cams │ ├── 00000000_cam.txt │ ├── 00000001_cam.txt │ 阅读全文
posted @ 2022-07-15 10:27 达可奈特 阅读(1188) 评论(0) 推荐(0) 编辑
摘要: 如果在已知相机位姿情况进行场景的稀疏/稠密重建,需要手动创建稀疏模型。即在一个新文件夹中创建cameras.txt, points3D.txt 和 images.txt。 COLMAP已知相机位姿情况进行场景的稀疏/稠密重建 +── path/to/manually/created/sparse/m 阅读全文
posted @ 2022-07-12 14:52 达可奈特 阅读(3737) 评论(0) 推荐(1) 编辑
摘要: #### 一、下载编译 ``` git clone https://github.com/mkazhdan/PoissonRecon.git cd PoissonRecon make # 编译 ``` 生成的可执行文件在`PoissonRecon/Bin/Linux` 文件夹 #### 二、表面重建 阅读全文
posted @ 2022-07-08 10:20 达可奈特 阅读(1951) 评论(4) 推荐(0) 编辑
摘要: Student.h main.cpp C++中class和struct区别: C++中class类中的成员默认都是private属性的;而使用 struct 时,结构体中的成员默认都是public属性的 https://m.haicoder.net/cpp/cpp-class-struct.html 阅读全文
posted @ 2021-07-31 19:36 达可奈特 阅读(96) 评论(0) 推荐(0) 编辑
摘要: C++如何写一个类,以class为例 可以将C++中的类理解为一个复合变量,定义了该变量包含的成员(成员变量),以及该成员上可以执行的操作(成员函数)。 成员函数至少包括构造函数和析构函数,默认版本的其实可以不用写 避免构造函数的参数名与成员变量名相同 / this指针详解 除了构造函数,成员变量赋 阅读全文
posted @ 2021-07-23 15:11 达可奈特 阅读(700) 评论(0) 推荐(0) 编辑
摘要: 安装TensorFlow conda install tensorflow-gpu 测试TensorFlow是否安装成功 import tensorflow as tf sess = tf.Session() a = tf.constant(1) b = tf.constant(2) print(s 阅读全文
posted @ 2021-07-22 12:20 达可奈特 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Faster R-CNN Faster R-CNN对Fast RCNN的区域选择策略进行改进,使用一种RPN网络来代替传统的SS(Selective Search)选择性搜索策略。 Faster RCNN由两个模块组成,一是用于proposes regions的深度全卷积网络(RPN),二是利用Fa 阅读全文
posted @ 2021-07-19 09:47 达可奈特 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 参考 https://linux.die.net/man/3/mkdir Creating a Directory https://www.cnblogs.com/TTTTT/p/6017691.html 参考Gipuma代码:https://github.com/kysucix/gipuma/bl 阅读全文
posted @ 2021-07-15 16:03 达可奈特 阅读(392) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页