From 35b4b6f84658fb059a45f91be576a29bf9c6eea6 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Fri, 24 Jul 2026 11:15:29 +0100 Subject: [PATCH] Raise filter_speckle CLI cap from 16 to 128 Ports visioncortex/vtracer#115: the command app capped filter_speckle at 16 while the web app allowed up to 128. Match the web app's range. --- crates/vtracer-cli/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/vtracer-cli/src/main.rs b/crates/vtracer-cli/src/main.rs index 980bfb4..80ceba9 100644 --- a/crates/vtracer-cli/src/main.rs +++ b/crates/vtracer-cli/src/main.rs @@ -39,8 +39,8 @@ struct Args { #[arg(short, long)] mode: Option, - /// Discard patches smaller than X px in size (0..=16). - #[arg(short = 'f', long, value_parser = clap::value_parser!(i64).range(0..=16))] + /// Discard patches smaller than X px in size (0..=128). + #[arg(short = 'f', long, value_parser = clap::value_parser!(i64).range(0..=128))] filter_speckle: Option, /// Significant bits per RGB channel (1..=8).