当前位置:网站首页>open3d学习笔记二【文件读写】
open3d学习笔记二【文件读写】
2022-07-02 06:26:00 【寂云萧】
官方文档的读取函数
| 函数 | 参数 |
|---|---|
| open3d.io.read_azure_kinect_mkv_metadata | (filename) |
| open3d.io.read_azure_kinect_sensor_config | (filename) |
| open3d.io.read_feature | (filename) |
| open3d.io.read_file_geometry_type(读取文件的几何类型) | ( arg0 : str )(return(open3d.cpu.pybind.io.FileGeometry)) |
| open3d.io.read_image | (filename) |
| open3d.io.read_pinhole_camera_intrinsic | (filename) |
| open3d.io.read_line_set | (filename, format=‘auto’, print_progress=False) |
| open3d.io.read_octree | (filename, format=‘auto’) |
| open3d.io.read_pinhole_camera_parameters | (filename) |
| open3d.io.read_pinhole_camera_trajectory | (filename) |
| open3d.io.read_point_cloud | (filename, format=‘auto’, remove_nan_points=False, remove_infinite_points=False, print_progress=False) |
| open3d.io.read_pose_graph | (filename) |
| open3d.io.read_triangle_mesh | (filename, enable_post_processing=False, print_progress=False) |
| open3d.io.read_triangle_model | (filename, print_progress=False) |
| open3d.io.read_voxel_grid | (filename, format=‘auto’, print_progress=False) |
详细读取操作看上一章。
官方文档的写入函数。
| 函数 | 参数 |
|---|---|
| open3d.io.write_line_set | (filename,line_set,write_ascii = False,compressed = False,print_progress = False) |
| open3d.io.write_octree | (filename, octree) |
| open3d.io.write_pinhole_camera_intrinsic | (filename, intrinsic) |
| open3d.io.write_pinhole_camera_parameters | (filename, parameters) |
| open3d.io.write_pinhole_camera_trajectory | (filename, trajectory) |
| open3d.io.write_point_cloud | (filename, pointcloud, write_ascii=False, compressed=False, print_progress=False) |
| open3d.io.write_pose_graph | (filename, pose_graph) |
| open3d.io.write_triangle_mesh | (filename, mesh, write_ascii=False, compressed=False, write_vertex_normals=True, write_vertex_colors=True, write_triangle_uvs=True, print_progress=False) |
| open3d.io.write_voxel_grid | (filename, voxel_grid, write_ascii=False, compressed=False, print_progress=False) |
| open3d.io.write_image | (filename, image, quality=- 1) |
| open3d.io.write_feature | (filename, feature) |
| open3d.io.write_azure_kinect_sensor_config | (filename, config) |
| open3d.io.write_azure_kinect_mkv_metadata | (filename, config) |
其中常用两种。
一种是点云的写入open3d.io.write_point_cloud(),对应读取格式,多用于写入ply和pcd格式文件。
另一种是open3d.io.write_triangle_mesh,同样对应读取格式,写入stl等格式文件。
边栏推荐
- Proof and understanding of pointnet principle
- PointNet理解(PointNet实现第4步)
- 【Programming】
- latex公式正体和斜体
- [CVPR‘22 Oral2] TAN: Temporal Alignment Networks for Long-term Video
- 【Wing Loss】《Wing Loss for Robust Facial Landmark Localisation with Convolutional Neural Networks》
- Apple added the first iPad with lightning interface to the list of retro products
- Win10 solves the problem that Internet Explorer cannot be installed
- 【Mixup】《Mixup:Beyond Empirical Risk Minimization》
- How do vision transformer work? [interpretation of the paper]
猜你喜欢
![[Sparse to Dense] Sparse to Dense: Depth Prediction from Sparse Depth samples and a Single Image](/img/05/bf131a9e2716c9147a5473db4d0a5b.png)
[Sparse to Dense] Sparse to Dense: Depth Prediction from Sparse Depth samples and a Single Image

半监督之mixmatch

深度学习分类优化实战

【Cascade FPD】《Deep Convolutional Network Cascade for Facial Point Detection》

Deep learning classification Optimization Practice

Translation of the paper "written mathematical expression recognition with bidirectionally trained transformer"

【Random Erasing】《Random Erasing Data Augmentation》

Regular expressions in MySQL

【DIoU】《Distance-IoU Loss:Faster and Better Learning for Bounding Box Regression》

【Mixup】《Mixup:Beyond Empirical Risk Minimization》
随机推荐
CPU register
Implementation of yolov5 single image detection based on pytorch
Drawing mechanism of view (II)
Traditional target detection notes 1__ Viola Jones
Memory model of program
【FastDepth】《FastDepth:Fast Monocular Depth Estimation on Embedded Systems》
Convert timestamp into milliseconds and format time in PHP
【Mixup】《Mixup:Beyond Empirical Risk Minimization》
MMDetection安装问题
[torch] some ideas to solve the problem that the tensor parameters have gradients and the weight is not updated
Determine whether the version number is continuous in PHP
ModuleNotFoundError: No module named ‘pytest‘
label propagation 标签传播
Mmdetection model fine tuning
解决latex图片浮动的问题
Alpha Beta Pruning in Adversarial Search
Tencent machine test questions
TimeCLR: A self-supervised contrastive learning framework for univariate time series representation
【BiSeNet】《BiSeNet:Bilateral Segmentation Network for Real-time Semantic Segmentation》
【Wing Loss】《Wing Loss for Robust Facial Landmark Localisation with Convolutional Neural Networks》