Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- CV
- ML
- PRML
- 머신러닝
- FGVC
- FineGrained
- Meta Learning
- clean code
- algorithm
- web
- computervision
- Vision
- SSL
- classification
- Python
- 알고리즘
- pytorch
- 3d
- math
- dl
- Torch
- Front
- nlp
- nerf
- 자료구조
- GAN
- cs
- 딥러닝
- REACT
- Depth estimation
- Today
- Total
목록Python/Open3D (1)
KalelPark's LAB

Point Cloud 아래의 코드를 보면, PLYPointCloud 객체를 한 곳에 지정해주고, point_cloud로 pcd파일을 읽고, pcd 파일을 출력하는 코드입니다. read point cloud : 파일로부터, point cloud를 읽고, 파일을 포인트 형태로 decoding을 합니다. draw geometries : mouse/trackpad를 활용하여, 여러 view를 생성하는 것이 가능합니다, import open3d as o3d import numpy as np import os import sys print("Load a ply point cloud, print it, and render it") ply_point_cloud = o3d.data.PLYPointCloud() pcd =..
Python/Open3D
2023. 4. 30. 17:12