-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathdemo_img2img.py
82 lines (68 loc) · 2.78 KB
/
demo_img2img.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#
# SPDX-FileCopyrightText: Copyright (c) 1993-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import argparse
import PIL
from cuda import cudart
from PIL import Image
from stable_diffusion_pipeline import StableDiffusionPipeline
from utilities import (
PIPELINE_TYPE,
TRT_LOGGER,
add_arguments,
download_image,
preprocess_image,
process_pipeline_args
)
def parseArgs():
parser = argparse.ArgumentParser(description="Options for Stable Diffusion Img2Img Demo")
parser = add_arguments(parser)
parser.add_argument('--input-image', type=str, default="", help="Path to the input image")
return parser.parse_args()
if __name__ == "__main__":
print("[I] Initializing StableDiffusion img2img demo using TensorRT")
args = parseArgs()
if args.input_image:
input_image = Image.open(args.input_image)
else:
url = "https://raw.githubusercontent.com/CompVis/stable-diffusion/main/assets/stable-samples/img2img/sketch-mountains-input.jpg"
input_image = download_image(url)
image_width, image_height = input_image.size
if image_height != args.height or image_width != args.width:
print(f"[I] Resizing input_image to {args.height}x{args.width}")
input_image = input_image.resize((args.height, args.width))
image_height, image_width = args.height, args.width
if isinstance(input_image, PIL.Image.Image):
input_image = preprocess_image(input_image)
kwargs_init_pipeline, kwargs_load_engine, args_run_demo = process_pipeline_args(args)
# Initialize demo
demo = StableDiffusionPipeline(
pipeline_type=PIPELINE_TYPE.IMG2IMG,
**kwargs_init_pipeline)
# Load TensorRT engines and pytorch modules
demo.loadEngines(
args.engine_dir,
args.framework_model_dir,
args.onnx_dir,
**kwargs_load_engine)
# Load resources
_, shared_device_memory = cudart.cudaMalloc(demo.calculateMaxDeviceMemory())
demo.activateEngines(shared_device_memory)
demo.loadResources(args.height, args.width, args.batch_size, args.seed)
# Run inference
demo_kwargs = {'input_image': input_image, 'image_strength': 0.75}
demo.run(*args_run_demo, **demo_kwargs)
demo.teardown()