From 4d3002e9d69218426a7a3af730adbdd1efe25942 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Tue, 31 Dec 2024 10:42:03 -0500 Subject: [PATCH] Clarify scale of phase data. --- src/patch_denoise/bindings/cli.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/patch_denoise/bindings/cli.py b/src/patch_denoise/bindings/cli.py index 3c34e1e..25bc64d 100644 --- a/src/patch_denoise/bindings/cli.py +++ b/src/patch_denoise/bindings/cli.py @@ -216,7 +216,7 @@ def _get_parser(): type=IsFile, help=( "Phase of the input data. This MUST be in radians. " - "No conversion would be applied." + "No rescaling will be applied." ), ) data_group.add_argument( @@ -224,7 +224,10 @@ def _get_parser(): metavar="FILE", default=None, type=IsFile, - help="phase component of the noise map estimation file", + help=( + "Phase component of the noise map estimation file. " + "This MUST be in radians. No rescaling will be applied." + ), ) misc_group = parser.add_argument_group("Miscellaneous options")