Skip to content

Commit 882aabf

Browse files
committed
tooltip
1 parent f4a56b0 commit 882aabf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

nodes/image_utility.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1300,11 +1300,11 @@ def INPUT_TYPES(cls):
13001300
"images": (IO.IMAGE,),
13011301
"sample_method": (["center", "majority"], {"default": "center"}),
13021302
# "grid_size": (IO.INT, {"default": 4}),
1303-
"min_size": (IO.INT, {"default": 4}),
1304-
"peak_width": (IO.INT, {"default": 4}),
1305-
"refine_intensity": (IO.FLOAT, {"default": 0.25, "min": 0.0, "max": 0.5, "step": 0.01}),
1306-
"fix_square": (IO.BOOLEAN, {"default": True}),
1307-
"debug": (IO.BOOLEAN, {"default": False}),
1303+
"min_size": (IO.INT, {"default": 1, "tooltip": "Minimum size of the detected pixel pattern"}),
1304+
"peak_width": (IO.INT, {"default": 1, "tooltip": "Minimum peak width for peak detection."}),
1305+
"refine_intensity": (IO.FLOAT, {"default": 0.25, "min": 0.0, "max": 0.5, "step": 0.01, "tooltip": "Intensity for grid line refinement. Recommended range is [0, 0.5]. Given original estimated grid line at x, the refinement will search in [x * (1 - refine_intensity), x * (1 + refine_intensity)]."}),
1306+
"fix_square": (IO.BOOLEAN, {"default": True, "tooltip": "Whether to enforce output to be square when detected image is almost square."}),
1307+
"debug": (IO.BOOLEAN, {"default": False, "tooltip": "Whether to show debug plots.s"}),
13081308
}
13091309
}
13101310

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Python Script
6363
6464
Load LoRA Dual
6565
"""
66-
version = "1.0.85"
66+
version = "1.0.86"
6767
license = { file = "LICENSE" }
6868
dependencies = [
6969
"googletrans",

0 commit comments

Comments
 (0)