mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
ui: intial mosaic infill ui
Need to change color picking.
This commit is contained in:
committed by
psychedelicious
parent
3c195d74a5
commit
adb7966bb3
@ -65,6 +65,10 @@ export const buildCanvasOutpaintGraph = async (
|
||||
infillTileSize,
|
||||
infillPatchmatchDownscaleSize,
|
||||
infillMethod,
|
||||
infillMosaicTileWidth,
|
||||
infillMosaicTileHeight,
|
||||
infillMosaicMinColor,
|
||||
infillMosaicMaxColor,
|
||||
clipSkip,
|
||||
seamlessXAxis,
|
||||
seamlessYAxis,
|
||||
@ -361,6 +365,10 @@ export const buildCanvasOutpaintGraph = async (
|
||||
type: 'infill_mosaic',
|
||||
id: INPAINT_INFILL,
|
||||
is_intermediate,
|
||||
tile_width: infillMosaicTileWidth,
|
||||
tile_height: infillMosaicTileHeight,
|
||||
min_color: infillMosaicMinColor,
|
||||
max_color: infillMosaicMaxColor,
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -66,6 +66,10 @@ export const buildCanvasSDXLOutpaintGraph = async (
|
||||
infillTileSize,
|
||||
infillPatchmatchDownscaleSize,
|
||||
infillMethod,
|
||||
infillMosaicTileWidth,
|
||||
infillMosaicTileHeight,
|
||||
infillMosaicMinColor,
|
||||
infillMosaicMaxColor,
|
||||
seamlessXAxis,
|
||||
seamlessYAxis,
|
||||
canvasCoherenceMode,
|
||||
@ -370,6 +374,10 @@ export const buildCanvasSDXLOutpaintGraph = async (
|
||||
type: 'infill_mosaic',
|
||||
id: INPAINT_INFILL,
|
||||
is_intermediate,
|
||||
tile_width: infillMosaicTileWidth,
|
||||
tile_height: infillMosaicTileHeight,
|
||||
min_color: infillMosaicMinColor,
|
||||
max_color: infillMosaicMaxColor,
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user