Computer Vision 4

BPS (Basis Point Set)

https://github.com/amzn/basis-point-sets GitHub - amzn/basis-point-setsContribute to amzn/basis-point-sets development by creating an account on GitHub.github.com - 3D point cloud 를 표현 하는 방식으로, 정해진 숫자의 vertices로 이루어진 구 형태의 기본 모양을 정의한 후, 각 점마다 가장 가까운 vertex 의 vector 를 저장하는 방식으로 표현 - 정해진 숫자의 점들로만 point cloud 를 정의 할 수 있다는 게 장점. machine learning 에 쓰이기 적합

Computer Vision 2024.09.13

[Python] Triangle Mesh to Pointcloud

Mesh 를 다룰 때 pytorch3d, open3d 두가지의 3d 라이브러리를 많이 쓰는 편이다. Triangle Mesh 가 있는 상황에서 Point Cloud를 뽑아내는 두 라이브러리 함수를 정리해 놓았다. 1. Open3D의 Sampling http://www.open3d.org/docs/release/tutorial/geometry/mesh.html#Sampling Mesh — Open3D 0.17.0 documentation Open3D has a data structure for 3D triangle meshes called TriangleMesh. The code below shows how to read a triangle mesh from a ply file and print its v..

Computer Vision 2023.09.09