Skip to content

Commit

Permalink
update submodule, add keyword args to avoid breakage with future vers…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
A4P7J1N7M05OT committed Oct 15, 2024
1 parent 5836940 commit 172e7c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ def process(img, mode, target_size, patch_size, pixel_size, thickness,
img = cv2.cvtColor(img, cv2.COLOR_RGB2BGR)

img_pix = pixelize(
img, mode, target_size, patch_size, pixel_size, thickness,
color_matching, contrast, saturation, colors, color_quant_method,
colors_with_weight, no_upscale, no_downscale
img=img, mode=mode, target_size=target_size, patch_size=patch_size, pixel_size=pixel_size, thickness=thickness,
color_matching=color_matching, contrast=contrast, saturation=saturation, colors=colors, color_quant_method=color_quant_method,
colors_with_weight=colors_with_weight, no_upscale=no_upscale, no_downscale=no_downscale,
)

img_pix = cv2.cvtColor(img_pix, cv2.COLOR_BGR2RGB)
Expand Down

0 comments on commit 172e7c2

Please sign in to comment.