magicleap / Atlas

Atlas: End-to-End 3D Scene Reconstruction from Posed Images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unable to open ply files

no-Seaweed opened this issue · comments

Hi,

I am using Scannet dataset to run the train script. However, I cannot open any of the ply files from the dataset, for example scene0000_01_vh_clean_2. I have tried to either open it with Meshlab or default Windows 3D
displayer or use trimesh. They all failed. Could anyone please tell me how to process them to the version that could be accepted by atlas pipeline?

Best,
S.F

import trimesh

tmp = PLYPATH
data = trimesh.load(tmp)
data.show()

import trimesh

tmp = PLYPATH data = trimesh.load(tmp) data.show()

I tried, but the script complained about missing header on the line trimesh.load. Could you please share a sample ply file that you have in vim? It would be better if I can compare the difference between my version and your correct one :)