-
Notifications
You must be signed in to change notification settings - Fork 2.7k
fix: Inpaint Fixes #4301
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
fix: Inpaint Fixes #4301
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
5aa7bfe
Fix masked generation with inpaint models
StAlKeR7779 bf0dfca
Add inapint mask field class
StAlKeR7779 ff5c725
Update mask field type
StAlKeR7779 b213335
feat: Add InpaintMask Field type
blessedcoolant e9a294f
Merge branch 'main' into fix/inpaint_gen
lstein cfd827c
Added node for creating mask inpaint
StAlKeR7779 3c43594
Merge branch 'main' into fix/inpaint_gen
psychedelicious c49851e
chore: minor cleanup after merge & flake8
psychedelicious e9633a3
Merge branch 'main' into fix/inpaint_gen
blessedcoolant 382a55a
fix: merge conflicts
blessedcoolant af3e316
chore: Regen schema
blessedcoolant 226721c
feat: Setup UnifiedCanvas to work with new InpaintMaskField
blessedcoolant c923d09
rename: Inpaint Mask to Denoise Mask
blessedcoolant 521da55
feat: Update color of Denoise Mask socket
blessedcoolant 249048a
fix: Reorder DenoiseMask socket fields
blessedcoolant b18695d
fix: Update color of denoise mask socket
blessedcoolant 3f8d17d
chore: Black linting
blessedcoolant 71c3955
feat: Add Scale Before Processing To Canvas Txt2Img / Img2Img (w/ SDXL)
blessedcoolant 1811b54
Provide metadata to image creation call
StAlKeR7779 526c7e7
Provide antialias argument as behaviour will be changed in future(dep…
StAlKeR7779 3e6c490
Change antialias to True as input - image
StAlKeR7779 4f00dbe
Merge branch 'main' into fix/inpaint_gen
hipsterusername File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...c/features/nodes/components/flow/nodes/Invocation/fields/inputs/DenoiseMaskInputField.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { | ||
DenoiseMaskInputFieldTemplate, | ||
DenoiseMaskInputFieldValue, | ||
FieldComponentProps, | ||
} from 'features/nodes/types/types'; | ||
import { memo } from 'react'; | ||
|
||
const DenoiseMaskInputFieldComponent = ( | ||
_props: FieldComponentProps< | ||
DenoiseMaskInputFieldValue, | ||
DenoiseMaskInputFieldTemplate | ||
> | ||
) => { | ||
return null; | ||
}; | ||
|
||
export default memo(DenoiseMaskInputFieldComponent); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.