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
e1db7a20
Commit
e1db7a20
authored
Apr 14, 2023
by
comfyanonymous
Browse files
Merge branch 'image-to-mask' of
https://github.com/missionfloyd/ComfyUI
# Conflicts: # nodes.py
parents
1a7cda71
9371924e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
0 deletions
+55
-0
comfy_extras/nodes_mask_conversion.py
comfy_extras/nodes_mask_conversion.py
+54
-0
nodes.py
nodes.py
+1
-0
No files found.
comfy_extras/nodes_mask_conversion.py
0 → 100644
View file @
e1db7a20
import
numpy
as
np
import
torch
import
torch.nn.functional
as
F
from
PIL
import
Image
import
comfy.utils
class
ImageToMask
:
@
classmethod
def
INPUT_TYPES
(
s
):
return
{
"required"
:
{
"image"
:
(
"IMAGE"
,),
"channel"
:
([
"red"
,
"green"
,
"blue"
],),
}
}
CATEGORY
=
"image"
RETURN_TYPES
=
(
"MASK"
,)
FUNCTION
=
"image_to_mask"
def
image_to_mask
(
self
,
image
,
channel
):
channels
=
[
"red"
,
"green"
,
"blue"
]
mask
=
image
[
0
,
:,
:,
channels
.
index
(
channel
)]
return
(
mask
,)
class
MaskToImage
:
@
classmethod
def
INPUT_TYPES
(
s
):
return
{
"required"
:
{
"mask"
:
(
"MASK"
,),
}
}
CATEGORY
=
"image"
RETURN_TYPES
=
(
"IMAGE"
,)
FUNCTION
=
"mask_to_image"
def
mask_to_image
(
self
,
mask
):
result
=
mask
[
None
,
:,
:,
None
].
expand
(
-
1
,
-
1
,
-
1
,
3
)
return
(
result
,)
NODE_CLASS_MAPPINGS
=
{
"ImageToMask"
:
ImageToMask
,
"MaskToImage"
:
MaskToImage
,
}
NODE_DISPLAY_NAME_MAPPINGS
=
{
"ImageToMask"
:
"Convert Image to Mask"
,
"MaskToImage"
:
"Convert Mask to Image"
,
}
nodes.py
View file @
e1db7a20
...
...
@@ -1193,3 +1193,4 @@ def init_custom_nodes():
load_custom_node
(
os
.
path
.
join
(
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
)),
"comfy_extras"
),
"nodes_upscale_model.py"
))
load_custom_node
(
os
.
path
.
join
(
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
)),
"comfy_extras"
),
"nodes_post_processing.py"
))
load_custom_node
(
os
.
path
.
join
(
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
)),
"comfy_extras"
),
"nodes_mask.py"
))
load_custom_node
(
os
.
path
.
join
(
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
)),
"comfy_extras"
),
"nodes_mask_conversion.py"
))
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