Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
d3406d8d
Commit
d3406d8d
authored
Mar 17, 2024
by
comfyanonymous
Browse files
Increase image batch nodes maximum values.
parent
d7897fff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
comfy_extras/nodes_images.py
comfy_extras/nodes_images.py
+3
-3
No files found.
comfy_extras/nodes_images.py
View file @
d3406d8d
...
...
@@ -37,7 +37,7 @@ class RepeatImageBatch:
@
classmethod
def
INPUT_TYPES
(
s
):
return
{
"required"
:
{
"image"
:
(
"IMAGE"
,),
"amount"
:
(
"INT"
,
{
"default"
:
1
,
"min"
:
1
,
"max"
:
6
4
}),
"amount"
:
(
"INT"
,
{
"default"
:
1
,
"min"
:
1
,
"max"
:
4
096
}),
}}
RETURN_TYPES
=
(
"IMAGE"
,)
FUNCTION
=
"repeat"
...
...
@@ -52,8 +52,8 @@ class ImageFromBatch:
@
classmethod
def
INPUT_TYPES
(
s
):
return
{
"required"
:
{
"image"
:
(
"IMAGE"
,),
"batch_index"
:
(
"INT"
,
{
"default"
:
0
,
"min"
:
0
,
"max"
:
63
}),
"length"
:
(
"INT"
,
{
"default"
:
1
,
"min"
:
1
,
"max"
:
6
4
}),
"batch_index"
:
(
"INT"
,
{
"default"
:
0
,
"min"
:
0
,
"max"
:
4095
}),
"length"
:
(
"INT"
,
{
"default"
:
1
,
"min"
:
1
,
"max"
:
4
096
}),
}}
RETURN_TYPES
=
(
"IMAGE"
,)
FUNCTION
=
"frombatch"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment