Skip to content

Instantly share code, notes, and snippets.

View Helias's full-sized avatar
🏠
Working from home

Stefano Borzì Helias

🏠
Working from home
View GitHub Profile
@Helias
Helias / ply2obj.py
Last active February 11, 2024 06:19 — forked from assafrabin/ply2obj.py
Python script to convert *.ply to *.obj (3D formats)
import os
from os import listdir
from os.path import isfile, join
from argparse import ArgumentParser
from plyfile import PlyData
def parse_args():
parser = ArgumentParser()