From 779e27c9f144893283917e51a8c37029992e3888 Mon Sep 17 00:00:00 2001 From: Adrian Tobiszewski Date: Tue, 24 Mar 2026 14:39:06 +0100 Subject: [PATCH] Add download commands for inpainting/outpainting demo images --- demos/image_generation/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/demos/image_generation/README.md b/demos/image_generation/README.md index 4943524c84..f37257e2de 100644 --- a/demos/image_generation/README.md +++ b/demos/image_generation/README.md @@ -528,6 +528,12 @@ Output file (`edit_output.png`): Inpainting replaces a masked region in an image based on the prompt. The `mask` is a black-and-white image where white pixels mark the area to repaint. +Download sample images: +```console +curl -O https://raw.githubusercontent.com/openvinotoolkit/model_server/main/demos/image_generation/cat.png +curl -O https://raw.githubusercontent.com/openvinotoolkit/model_server/main/demos/image_generation/cat_mask.png +``` + ![cat](./cat.png) ![cat_mask](./cat_mask.png) ::::{tab-set} @@ -599,6 +605,12 @@ Outpainting extends an image beyond its original borders. Prepare two images: - **outpaint_input.png** — the original image centered on a larger canvas (e.g. 768×768) with black borders - **outpaint_mask.png** — white where the new content should be generated (the borders), black where the original image is +Download sample images: +```console +curl -O https://raw.githubusercontent.com/openvinotoolkit/model_server/main/demos/image_generation/outpaint_input.png +curl -O https://raw.githubusercontent.com/openvinotoolkit/model_server/main/demos/image_generation/outpaint_mask.png +``` + ![outpaint_input](./outpaint_input.png) ![outpaint_mask](./outpaint_mask.png) ::::{tab-set}