-
Notifications
You must be signed in to change notification settings - Fork 6
/
example_with_random_seed.py
60 lines (40 loc) · 1.56 KB
/
example_with_random_seed.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
import json
import os
import time
import random
import gradio as gr
import numpy as np
import requests
from PIL import Image
URL = "http://127.0.0.1:8188/prompt"
INPUT_DIR = "replace with comfyui input dir path"
OUTPUT_DIR = "replace with comfyui ouput directory path"
def get_latest_image(folder):
files = os.listdir(folder)
image_files = [f for f in files if f.lower().endswith(('.png', '.jpg', '.jpeg'))]
image_files.sort(key=lambda x: os.path.getmtime(os.path.join(folder, x)))
latest_image = os.path.join(folder, image_files[-1]) if image_files else None
return latest_image
def start_queue(prompt_workflow):
p = {"prompt": prompt_workflow}
data = json.dumps(p).encode('utf-8')
requests.post(URL, data=data)
def generate_image(input_image):
with open("workflow_api.json", "r") as file_json:
prompt = json.load(file_json)
prompt["3"]["inputs"]["seed"] = random.randint(1, 1500000)
image = Image.fromarray(input_image)
min_side = min(image.size)
scale_factor = 512 / min_side
new_size = (round(image.size[0] * scale_factor), round(image.size[1] * scale_factor))
resized_image = image.resize(new_size)
resized_image.save(os.path.join(INPUT_DIR, "test_api.jpg"))
previous_image = get_latest_image(OUTPUT_DIR)
start_queue(prompt)
while True:
latest_image = get_latest_image(OUTPUT_DIR)
if latest_image != previous_image:
return latest_image
time.sleep(1)
demo = gr.Interface(fn=generate_image, inputs=["image"], outputs=["image"])
demo.launch(share=True)