1
0
Fork 0

fix(docs): add overlap diagrams

This commit is contained in:
Sean Sube 2023-06-24 13:31:54 -05:00
parent 7705cb46aa
commit f4153aaba8
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
4 changed files with 27 additions and 0 deletions

BIN
docs/overlap-25p-crop.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
docs/overlap-25p.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
docs/overlap-50p.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -53,6 +53,8 @@ Please see [the server admin guide](server-admin.md) for details on how to confi
- [Batch size parameter](#batch-size-parameter) - [Batch size parameter](#batch-size-parameter)
- [Tile size parameter](#tile-size-parameter) - [Tile size parameter](#tile-size-parameter)
- [Overlap parameter](#overlap-parameter) - [Overlap parameter](#overlap-parameter)
- [25% overlap](#25-overlap)
- [50% overlap](#50-overlap)
- [UNet stride parameter](#unet-stride-parameter) - [UNet stride parameter](#unet-stride-parameter)
- [Tiled VAE parameter](#tiled-vae-parameter) - [Tiled VAE parameter](#tiled-vae-parameter)
- [Prompt parameter](#prompt-parameter) - [Prompt parameter](#prompt-parameter)
@ -587,6 +589,22 @@ between tiles. Increasing this too far will cause blurry images.
_Note:_ The highres and VAE overlap parameters may be split up in the future. _Note:_ The highres and VAE overlap parameters may be split up in the future.
##### 25% overlap
Before cropping:
![25% overlap causes the third tile to run off the right side of the image](overlap-25p.png)
After cropping:
![the third tile is cropped to the image size and only 50% of it is kept](overlap-25p-crop.png)
##### 50% overlap
![the tiles line up evenly and are not cropped](overlap-50p.png)
Tiles evenly fill the image and do not need to be cropped.
#### UNet stride parameter #### UNet stride parameter
The stride between UNet tiles when running [the panorama pipeline](#panorama-pipeline). The stride between UNet tiles when running [the panorama pipeline](#panorama-pipeline).