feat: adjust max and step values for sharpen, edgeThreshold, and scanlines controls.
This commit is contained in:
@@ -93,7 +93,7 @@ import TuiButton from "./TuiButton.astro";
|
||||
id="sharpen"
|
||||
label="SHP"
|
||||
min={0}
|
||||
max={2}
|
||||
max={10}
|
||||
step={0.01}
|
||||
value={0.0}
|
||||
title="Sharpen"
|
||||
@@ -133,8 +133,8 @@ import TuiButton from "./TuiButton.astro";
|
||||
id="edgeThreshold"
|
||||
label="THR"
|
||||
min={0}
|
||||
max={1}
|
||||
step={0.01}
|
||||
max={20}
|
||||
step={0.1}
|
||||
value={0.5}
|
||||
title="Edge Threshold"
|
||||
description="Sets the sensitivity for edge detection. Higher values detect only strong edges."
|
||||
@@ -143,7 +143,7 @@ import TuiButton from "./TuiButton.astro";
|
||||
id="scanlines"
|
||||
label="SCN"
|
||||
min={0}
|
||||
max={1}
|
||||
max={2}
|
||||
step={0.01}
|
||||
value={0.0}
|
||||
title="Scanlines"
|
||||
|
||||
Reference in New Issue
Block a user