Skip to content
Snippets Groups Projects
Commit 559d84ba authored by Thomas Müller's avatar Thomas Müller
Browse files

Fix run.py doc: can load STL, not PLY

parent a0090e4c
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ def parse_args(): ...@@ -29,7 +29,7 @@ def parse_args():
parser.add_argument("files", nargs="*", help="Files to be loaded. Can be a scene, network config, snapshot, camera path, or a combination of those.") parser.add_argument("files", nargs="*", help="Files to be loaded. Can be a scene, network config, snapshot, camera path, or a combination of those.")
parser.add_argument("--scene", "--training_data", default="", help="The scene to load. Can be the scene's name or a full path to the training data. Can be NeRF dataset, a *.obj/*.ply mesh for training a SDF, an image, or a *.nvdb volume.") parser.add_argument("--scene", "--training_data", default="", help="The scene to load. Can be the scene's name or a full path to the training data. Can be NeRF dataset, a *.obj/*.stl mesh for training a SDF, an image, or a *.nvdb volume.")
parser.add_argument("--mode", default="", type=str, help=argparse.SUPPRESS) # deprecated parser.add_argument("--mode", default="", type=str, help=argparse.SUPPRESS) # deprecated
parser.add_argument("--network", default="", help="Path to the network config. Uses the scene's default if unspecified.") parser.add_argument("--network", default="", help="Path to the network config. Uses the scene's default if unspecified.")
......
...@@ -71,7 +71,7 @@ int main(int argc, char** argv) { ...@@ -71,7 +71,7 @@ int main(int argc, char** argv) {
ValueFlag<string> scene_flag{ ValueFlag<string> scene_flag{
parser, parser,
"SCENE", "SCENE",
"The scene to load. Can be NeRF dataset, a *.obj/*.ply mesh for training a SDF, an image, or a *.nvdb volume.", "The scene to load. Can be NeRF dataset, a *.obj/*.stl mesh for training a SDF, an image, or a *.nvdb volume.",
{'s', "scene"}, {'s', "scene"},
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment