当前位置:网站首页>Open3d learning notes II [file reading and writing]
Open3d learning notes II [file reading and writing]
2022-07-02 07:53:00 【Silent clouds】
Official document reading function
function | Parameters |
---|---|
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( Read the geometry type of the file ) | ( 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) |
See the previous chapter for detailed reading operations .
Writing function of official documents .
function | Parameters |
---|---|
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) |
There are two commonly used .
One is point cloud writing open3d.io.write_point_cloud()
, Corresponding reading format , Mostly used for writing ply and pcd Format file .
The other is open3d.io.write_triangle_mesh
, The same corresponds to the read format , write in stl Etc .
边栏推荐
- Faster-ILOD、maskrcnn_benchmark训练coco数据集及问题汇总
- 生成模型与判别模型的区别与理解
- CPU register
- 【DIoU】《Distance-IoU Loss:Faster and Better Learning for Bounding Box Regression》
- 【MobileNet V3】《Searching for MobileNetV3》
- 程序的内存模型
- Deep learning classification Optimization Practice
- iOD及Detectron2搭建过程问题记录
- 【Programming】
- Faster-ILOD、maskrcnn_ Benchmark installation process and problems encountered
猜你喜欢
Use Baidu network disk to upload data to the server
【Cascade FPD】《Deep Convolutional Network Cascade for Facial Point Detection》
Open3D学习笔记一【初窥门径,文件读取】
【Cutout】《Improved Regularization of Convolutional Neural Networks with Cutout》
Semi supervised mixpatch
iOD及Detectron2搭建过程问题记录
浅谈深度学习模型中的后门
【Batch】learning notes
Implementation of yolov5 single image detection based on pytorch
Sorting out dialectics of nature
随机推荐
【Wing Loss】《Wing Loss for Robust Facial Landmark Localisation with Convolutional Neural Networks》
【MobileNet V3】《Searching for MobileNetV3》
Deep learning classification Optimization Practice
Faster-ILOD、maskrcnn_benchmark训练自己的voc数据集及问题汇总
Use Baidu network disk to upload data to the server
Proof and understanding of pointnet principle
【Mixup】《Mixup:Beyond Empirical Risk Minimization》
【Paper Reading】
Apple added the first iPad with lightning interface to the list of retro products
Installation and use of image data crawling tool Image Downloader
PHP returns the abbreviation of the month according to the numerical month
Open3D学习笔记一【初窥门径,文件读取】
【Hide-and-Seek】《Hide-and-Seek: A Data Augmentation Technique for Weakly-Supervised Localization xxx》
Calculate the difference in days, months, and years between two dates in PHP
自然辩证辨析题整理
open3d学习笔记四【表面重建】
Remplacer l'auto - attention par MLP
论文tips
【AutoAugment】《AutoAugment:Learning Augmentation Policies from Data》
Faster-ILOD、maskrcnn_benchmark训练coco数据集及问题汇总