pytorch_geometric
                                
                                 pytorch_geometric copied to clipboard
                                
                                    pytorch_geometric copied to clipboard
                            
                            
                            
                        How to create the point clouds data into the pytorch_geometric way?
❓ Questions & Help
Hi~
I am wondering how to create the .ply, .obj, .txt data into the pytorch_geometric way, could you please give me some help?
As far as I understand, you want to create .ply, .obj or .txt files from torch_geometric.Data objects? We are in the process of creating torch_geometric.io, but this functionality is not supported yet.
As far as I understand, you want to create
.ply,.objor.txtfiles fromtorch_geometric.Dataobjects? We are in the process of creatingtorch_geometric.io, but this functionality is not supported yet.
Many thanks! but sorry,that's not what I meant.
I want to use the torch_geometric.data.InMemoryDataset and torch_geometric.data.Dataset  to create the Data Object from the point could raw datasets, so I can use the Pytorch Geometric library.
By the way, I checked the source code of the ModelNet And I am reading this script now. Hoping this can help me.
As far as I understand, you want to create
.ply,.objor.txtfiles fromtorch_geometric.Dataobjects? We are in the process of creatingtorch_geometric.io, but this functionality is not supported yet.
how about your torch_geometric.io?
As far as I understand, you want to create
.ply,.objor.txtfiles fromtorch_geometric.Dataobjects? We are in the process of creatingtorch_geometric.io, but this functionality is not supported yet.Many thanks! but sorry,that's not what I meant.
I want to use the
torch_geometric.data.InMemoryDatasetandtorch_geometric.data.Datasetto create the Data Object from the point could raw datasets, so I can use the Pytorch Geometric library.By the way, I checked the source code of the ModelNet And I am reading this script now. Hoping this can help me.
Hi @limt15 Were you able to use torch_geometric.data.InMemoryDataset on your point cloud files to create a torch_geometric.Data object? I have point cloud files (.txt / .las) and label files and want to do the same.
Hi @davodogster ! Did you manage to create a custom dataset for pytorch_geometric from .txt/.las files?