From 79ea42bdf7c11622c6a2bbd1cc2d0126b6a98a5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Colin=20de=20Verdi=C3=A8re?= Date: Fri, 4 Apr 2025 13:19:06 +0200 Subject: [PATCH] more precise description for --function option --- src/seam-carving.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/seam-carving.cpp b/src/seam-carving.cpp index dfc5ac5..c090059 100644 --- a/src/seam-carving.cpp +++ b/src/seam-carving.cpp @@ -520,7 +520,7 @@ int main(int argc, char **argv) { app.add_flag("--show-seams", show_seams, "Don't resize image, just try the specified energy function"); app.add_option("-f,--function", function, - "The function to apply to compute the energy"); + "The function to apply to compute the energy (default: gradient)"); app.add_flag( "-u,--until-mask-removal", until_mask_removal, "Carve the image until there are no more red pixels in the mask");