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 |
Tags
- REACT
- Python
- dl
- Torch
- 알고리즘
- clean code
- nlp
- CV
- web
- Vision
- Depth estimation
- nerf
- 딥러닝
- classification
- math
- computervision
- GAN
- FGVC
- SSL
- 자료구조
- Front
- PRML
- algorithm
- Meta Learning
- cs
- FineGrained
- 3d
- ML
- pytorch
- 머신러닝
- 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