Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,8 @@ def convert(input_img, quality=85):
|
|
18 |
|
19 |
def send_req(input_img: PIL.Image.Image):
|
20 |
|
21 |
-
|
|
|
22 |
|
23 |
req = {
|
24 |
"input": {
|
|
|
18 |
|
19 |
def send_req(input_img: PIL.Image.Image):
|
20 |
|
21 |
+
if type(input_img) is not PIL.Image.Image:
|
22 |
+
input_img = Image.fromarray(input_img, 'RGB')
|
23 |
|
24 |
req = {
|
25 |
"input": {
|