File size: 897 Bytes
34097e9 |
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 |
import os
import sys
import cv2
from base64 import b64encode
import requests
BASE_URL = "http://localhost:7860"
def setup_test_env():
ext_root = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
if ext_root not in sys.path:
sys.path.append(ext_root)
def readImage(path):
img = cv2.imread(path)
retval, buffer = cv2.imencode('.jpg', img)
b64img = b64encode(buffer).decode("utf-8")
return b64img
def get_model():
r = requests.get(BASE_URL+"/controlnet/model_list")
result = r.json()
if "model_list" in result:
result = result["model_list"]
for item in result:
print("Using model: ", item)
return item
return "None"
def get_modules():
return requests.get(f"{BASE_URL}/controlnet/module_list").json()
def detect(json):
return requests.post(BASE_URL+"/controlnet/detect", json=json)
|