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
fef41d0a
Commit
fef41d0a
authored
Jan 31, 2023
by
comfyanonymous
Browse files
Add LatentComposite node.
This can be used to "paste" one latent image on top of the other.
parent
3fa009f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
nodes.py
nodes.py
+22
-0
No files found.
nodes.py
View file @
fef41d0a
...
@@ -241,6 +241,27 @@ class LatentFlip:
...
@@ -241,6 +241,27 @@ class LatentFlip:
s
=
samples
s
=
samples
return
(
s
,)
return
(
s
,)
class
LatentComposite
:
@
classmethod
def
INPUT_TYPES
(
s
):
return
{
"required"
:
{
"samples_to"
:
(
"LATENT"
,),
"samples_from"
:
(
"LATENT"
,),
"x"
:
(
"INT"
,
{
"default"
:
0
,
"min"
:
0
,
"max"
:
4096
,
"step"
:
8
}),
"y"
:
(
"INT"
,
{
"default"
:
0
,
"min"
:
0
,
"max"
:
4096
,
"step"
:
8
}),
}}
RETURN_TYPES
=
(
"LATENT"
,)
FUNCTION
=
"composite"
CATEGORY
=
"latent"
def
composite
(
self
,
samples_to
,
samples_from
,
x
,
y
,
composite_method
=
"normal"
):
x
=
x
//
8
y
=
y
//
8
s
=
samples_to
.
clone
()
s
[:,:,
y
:
y
+
samples_from
.
shape
[
2
],
x
:
x
+
samples_from
.
shape
[
3
]]
=
samples_from
[:,:,:
samples_to
.
shape
[
2
]
-
y
,
:
samples_to
.
shape
[
3
]
-
x
]
return
(
s
,)
def
common_ksampler
(
device
,
model
,
seed
,
steps
,
cfg
,
sampler_name
,
scheduler
,
positive
,
negative
,
latent_image
,
denoise
=
1.0
,
disable_noise
=
False
,
start_step
=
None
,
last_step
=
None
,
force_full_denoise
=
False
):
def
common_ksampler
(
device
,
model
,
seed
,
steps
,
cfg
,
sampler_name
,
scheduler
,
positive
,
negative
,
latent_image
,
denoise
=
1.0
,
disable_noise
=
False
,
start_step
=
None
,
last_step
=
None
,
force_full_denoise
=
False
):
if
disable_noise
:
if
disable_noise
:
noise
=
torch
.
zeros
(
latent_image
.
size
(),
dtype
=
latent_image
.
dtype
,
layout
=
latent_image
.
layout
,
device
=
"cpu"
)
noise
=
torch
.
zeros
(
latent_image
.
size
(),
dtype
=
latent_image
.
dtype
,
layout
=
latent_image
.
layout
,
device
=
"cpu"
)
...
@@ -428,6 +449,7 @@ NODE_CLASS_MAPPINGS = {
...
@@ -428,6 +449,7 @@ NODE_CLASS_MAPPINGS = {
"ConditioningCombine"
:
ConditioningCombine
,
"ConditioningCombine"
:
ConditioningCombine
,
"ConditioningSetArea"
:
ConditioningSetArea
,
"ConditioningSetArea"
:
ConditioningSetArea
,
"KSamplerAdvanced"
:
KSamplerAdvanced
,
"KSamplerAdvanced"
:
KSamplerAdvanced
,
"LatentComposite"
:
LatentComposite
,
"LatentRotate"
:
LatentRotate
,
"LatentRotate"
:
LatentRotate
,
"LatentFlip"
:
LatentFlip
,
"LatentFlip"
:
LatentFlip
,
}
}
...
...
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