Skip to content

Instantly share code, notes, and snippets.

View CGuichard's full-sized avatar
🐺

Clément GUICHARD CGuichard

🐺
  • CS Group
  • Toulouse, France
View GitHub Profile
@CGuichard
CGuichard / ply2obj.py
Last active January 20, 2023 01:23 — forked from Helias/ply2obj.py
Python script to convert *.ply to *.obj (3D formats)
import os
from argparse import ArgumentParser
from os import listdir
from os.path import isfile, join
from plyfile import PlyData
def parse_args():
parser = ArgumentParser()