File size: 2,893 Bytes
87d40d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!--Copyright 2024 The HuggingFace Team. All rights reserved.

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.
-->

# Text-guided depth-to-image 생성

[[open-in-colab]]

[`StableDiffusionDepth2ImgPipeline`]을 μ‚¬μš©ν•˜λ©΄ ν…μŠ€νŠΈ ν”„λ‘¬ν”„νŠΈμ™€ 초기 이미지λ₯Ό μ „λ‹¬ν•˜μ—¬ μƒˆ μ΄λ―Έμ§€μ˜ 생성을 μ‘°μ ˆν•  수 μžˆμŠ΅λ‹ˆλ‹€. λ˜ν•œ 이미지 ꡬ쑰λ₯Ό λ³΄μ‘΄ν•˜κΈ° μœ„ν•΄ `depth_map`을 전달할 μˆ˜λ„ μžˆμŠ΅λ‹ˆλ‹€. `depth_map`이 μ œκ³΅λ˜μ§€ μ•ŠμœΌλ©΄ νŒŒμ΄ν”„λΌμΈμ€ ν†΅ν•©λœ [depth-estimation model](https://github.com/isl-org/MiDaS)을 톡해 μžλ™μœΌλ‘œ 깊이λ₯Ό μ˜ˆμΈ‘ν•©λ‹ˆλ‹€.


λ¨Όμ € [`StableDiffusionDepth2ImgPipeline`]의 μΈμŠ€ν„΄μŠ€λ₯Ό μƒμ„±ν•©λ‹ˆλ‹€:

```python
import torch
import requests
from PIL import Image

from diffusers import StableDiffusionDepth2ImgPipeline

pipe = StableDiffusionDepth2ImgPipeline.from_pretrained(
    "stabilityai/stable-diffusion-2-depth",
    torch_dtype=torch.float16,
).to("cuda")
```

이제 ν”„λ‘¬ν”„νŠΈλ₯Ό νŒŒμ΄ν”„λΌμΈμ— μ „λ‹¬ν•©λ‹ˆλ‹€. νŠΉμ • 단어가 이미지 생성을 κ°€μ΄λ“œ ν•˜λŠ”κ²ƒμ„ λ°©μ§€ν•˜κΈ° μœ„ν•΄ `negative_prompt`λ₯Ό 전달할 μˆ˜λ„ μžˆμŠ΅λ‹ˆλ‹€:

```python
url = "http://images.cocodataset.org/val2017/000000039769.jpg"
init_image = Image.open(requests.get(url, stream=True).raw)
prompt = "two tigers"
n_prompt = "bad, deformed, ugly, bad anatomy"
image = pipe(prompt=prompt, image=init_image, negative_prompt=n_prompt, strength=0.7).images[0]
image
```

| Input                                                                           | Output                                                                                                                                |
|---------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------|
| <img src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/coco-cats.png" width="500"/> | <img src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/depth2img-tigers.png" width="500"/> |

μ•„λž˜μ˜ Spacesλ₯Ό 가지고 놀며 depth map이 μžˆλŠ” 이미지와 μ—†λŠ” μ΄λ―Έμ§€μ˜ 차이가 μžˆλŠ”μ§€ 확인해 λ³΄μ„Έμš”!

<iframe
	src="https://radames-stable-diffusion-depth2img.hf.space"
	frameborder="0"
	width="850"
	height="500"
></iframe>