mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fixup
This commit is contained in:
parent
9faf7025c6
commit
8d2afefe6a
@ -632,7 +632,7 @@ class Generate:
|
|||||||
elif direction == 'right':
|
elif direction == 'right':
|
||||||
image = image.transpose(Image.Transpose.ROTATE_90)
|
image = image.transpose(Image.Transpose.ROTATE_90)
|
||||||
|
|
||||||
pixels = image.height//2 if pixels == None else int(pixels)
|
pixels = image.height//2 if pixels is None else int(pixels)
|
||||||
assert 0 < pixels < image.height, 'Direction (-D) pixels length must be in the range 0 - image.size'
|
assert 0 < pixels < image.height, 'Direction (-D) pixels length must be in the range 0 - image.size'
|
||||||
|
|
||||||
# the top part of the image is taken from the source image mirrored
|
# the top part of the image is taken from the source image mirrored
|
||||||
|
@ -204,7 +204,8 @@ def main_loop(gen, outdir, prompt_as_dir, parser, infile):
|
|||||||
opt.seed = None
|
opt.seed = None
|
||||||
continue
|
continue
|
||||||
|
|
||||||
opt.strength = 0.83 if opt.out_direction and opt.strength is None else opt.strength
|
if opt.strength is None:
|
||||||
|
opt.strength = 0.75 if opt.out_direction is None else 0.75
|
||||||
|
|
||||||
if opt.with_variations is not None:
|
if opt.with_variations is not None:
|
||||||
# shotgun parsing, woo
|
# shotgun parsing, woo
|
||||||
@ -621,7 +622,6 @@ def create_cmd_parser():
|
|||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-f',
|
'-f',
|
||||||
'--strength',
|
'--strength',
|
||||||
default=0.75,
|
|
||||||
type=float,
|
type=float,
|
||||||
help='Strength for noising/unnoising. 0.0 preserves image exactly, 1.0 replaces it completely',
|
help='Strength for noising/unnoising. 0.0 preserves image exactly, 1.0 replaces it completely',
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user