mirror of
https://github.com/visioncortex/vtracer.git
synced 2026-09-26 22:11:28 -07:00
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.
This commit is contained in:
@@ -39,8 +39,8 @@ struct Args {
|
|||||||
#[arg(short, long)]
|
#[arg(short, long)]
|
||||||
mode: Option<FitMode>,
|
mode: Option<FitMode>,
|
||||||
|
|
||||||
/// Discard patches smaller than X px in size (0..=16).
|
/// Discard patches smaller than X px in size (0..=128).
|
||||||
#[arg(short = 'f', long, value_parser = clap::value_parser!(i64).range(0..=16))]
|
#[arg(short = 'f', long, value_parser = clap::value_parser!(i64).range(0..=128))]
|
||||||
filter_speckle: Option<i64>,
|
filter_speckle: Option<i64>,
|
||||||
|
|
||||||
/// Significant bits per RGB channel (1..=8).
|
/// Significant bits per RGB channel (1..=8).
|
||||||
|
|||||||
Reference in New Issue
Block a user