Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dataset Processing - Add support for groups, articulated scenes, episodes. #1886

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
8 changes: 6 additions & 2 deletions scripts/unity_dataset_processing/decimate.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,16 @@ def decimate(
)

# And ... done!
converter.end_file()
importer.close()
close()

return (total_source_tris, total_target_tris, total_simplified_tris)


def close():
converter.end_file()
importer.close()


def main():
parser = argparse.ArgumentParser()
parser.add_argument("input")
Expand Down
Loading