This project uses the Stable Diffusion API to generate images from text prompts and apply styles to images. It provides a user interface with two tabs: "Create Image" and "Style Image".
In the "Create Image" tab, you can input a positive prompt and a negative prompt to generate an image. You can also adjust the number of steps for the image generation process. After clicking the "Generate" button, the generated image will be displayed.
In the "Style Image" tab, you can upload an image and apply a style to it. The available styles are fetched from the Stable Diffusion API. You can also adjust the denoising strength and the number of steps for the image-to-image process. Additionally, you can select a ControlNet module and model to further refine the image-to-image process. After clicking the "Convert" button, the styled image will be displayed.
This project requires the following dependencies:
requestsgradiopython-dotenv
To install dependencies:
pip install -r requirements.txtTo run the project, simply execute the script using a Python interpreter:
python style-photo.pyThis will launch the Gradio interface in your web browser. You can then interact with the interface to generate images from text prompts and apply styles to images.
- The
urlvariable in the script should be set to the address of your Stable Diffusion API instance. - The
controlnetModuleandcontrolnetModelvariables in the "Style Image" tab can be adjusted to use different ControlNet modules and models. - The
denoising_strengthandimg2imgStepsvariables in the "Style Image" tab can be adjusted to control the denoising strength and number of steps for the image-to-image process.