Skip to content

Commit

Permalink
Added support for bounding boxes in the Invocation API
Browse files Browse the repository at this point in the history
Adding built-in bounding boxes as a core type would help developers of nodes that include bounding box support.
  • Loading branch information
JPPhoto authored Aug 25, 2024
1 parent 231e5ec commit 1099e54
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions invokeai/invocation_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
)
from invokeai.app.invocations.fields import (
BoardField,
BoundingBoxField,
ColorField,
ConditioningField,
DenoiseMaskField,
Expand Down Expand Up @@ -46,6 +47,7 @@
from invokeai.app.invocations.primitives import (
BooleanCollectionOutput,
BooleanOutput,
BoundingBoxOutput,
ColorCollectionOutput,
ColorOutput,
ConditioningCollectionOutput,
Expand Down Expand Up @@ -92,6 +94,7 @@
"InvocationContext",
# invokeai.app.invocations.fields
"BoardField",
"BoundingBoxField",
"ColorField",
"ConditioningField",
"DenoiseMaskField",
Expand Down Expand Up @@ -128,6 +131,7 @@
# invokeai.app.invocations.primitives
"BooleanCollectionOutput",
"BooleanOutput",
"BoundingBoxOutput",
"ColorCollectionOutput",
"ColorOutput",
"ConditioningCollectionOutput",
Expand Down

0 comments on commit 1099e54

Please sign in to comment.