File size: 1,548 Bytes
3fdcc70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
61
62
63
64
import io
import os

import requests
from PIL import Image
from cllm.services.utils import get_bytes_value

__ALL__ = [
    "image2canny",
    "image2line",
    "image2hed",
    "image2scribble",
    "image2pose",
    "image2depth",
    "image2normal",
]


HOST = os.environ.get("CLLM_SERVICES_HOST", "localhost")
PORT = os.environ.get("CLLM_SERVICES_PORT", 10056)


def setup(host="localhost", port=10049):
    global HOST, PORT
    HOST = host
    PORT = port


def image2anything(image: Image, endpoint="image2line", **kwargs):
    host = kwargs.get("host", HOST)
    port = kwargs.get("port", PORT)
    url = f"http://{host}:{port}/{endpoint}"
    files = {"image": (image, get_bytes_value(image))}
    response = requests.post(url, files=files)
    return response.content


def image2canny(image: Image, **kwargs):
    return image2anything(image, endpoint="image2canny", **kwargs)


def image2line(image: Image, **kwargs):
    return image2anything(image, endpoint="image2line", **kwargs)


def image2hed(image: Image, **kwargs):
    return image2anything(image, endpoint="image2hed", **kwargs)


def image2scribble(image: Image, **kwargs):
    return image2anything(image, endpoint="image2scribble", **kwargs)


def image2pose(image: Image, **kwargs):
    return image2anything(image, endpoint="image2pose", **kwargs)


def image2depth(image: Image, **kwargs):
    return image2anything(image, endpoint="image2depth", **kwargs)


def image2normal(image: Image, **kwargs):
    return image2anything(image, endpoint="image2normal", **kwargs)