Updated CLI arguments for prepare action

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-07-04 16:27:43 +02:00
parent 3354a033fe
commit b6beebd0c1

View File

@ -60,14 +60,14 @@ def main() -> None:
if args.component == "config": if args.component == "config":
cli.config(args) cli.config(args)
elif args.component == "prepare":
cli.prepare(args)
elif args.component == "train": elif args.component == "train":
cli.train(args) cli.train(args)
elif args.component == "evaluate": elif args.component == "evaluate":
cli.evaluate(args) cli.evaluate(args)
elif args.component == "test": elif args.component == "test":
cli.test(args) cli.test(args)
elif args.component == "prepare":
cli.prepare(args)
elif args.component == "visualise": elif args.component == "visualise":
cli.visualise(args) cli.visualise(args)
elif args.component == "measure_mapping": elif args.component == "measure_mapping":
@ -96,9 +96,9 @@ def _build_config_set(parser: argparse.ArgumentParser) -> None:
def _build_prepare(parser: argparse.ArgumentParser) -> None: def _build_prepare(parser: argparse.ArgumentParser) -> None:
parser.add_argument("scenenet_path", type=str, help="the path to the SceneNet RGB-D data set") parser.add_argument("protobuf_path", type=str, help="path to the SceneNet RGB-D protobuf file")
parser.add_argument("protobuf_path", type=str, help="the path to the SceneNet RGB-D protobuf file") parser.add_argument("ground_truth_path", type=str,
parser.add_argument("ground_truth_path", type=str, help="the path where the ground truth should be stored") help="path to store ground truth - relative to configured ground truth path")
def _build_train(parser: argparse.ArgumentParser) -> None: def _build_train(parser: argparse.ArgumentParser) -> None: