weify627 / 4D-Rotor-Gaussians

Apache License 2.0
79 stars 5 forks source link

Problems about preprocessing N3V raw video #8

Closed grosshill closed 1 week ago

grosshill commented 2 months ago

Hi, thanks for your excellent work.

I tried to convert the cut_roasted_beef raw video to images using the script n3v2blender.py,but it seems something wrong with the variable filenames.

Traceback (most recent call last):
  File "scripts/n3v2blender.py", line 268, in <module>
    filesnames.sort()
NameError: name 'filesnames' is not defined

I examined the source code and I found it might be a small mistake:

filenames = os.listdir(images_path)
filesnames.sort()

So I changed it to filenames.sort() and it worked.

weify627 commented 1 week ago

Thank you for helping spot this error! The code is updated!