Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,9 @@ from codeinterpreterapi import CodeInterpreterSession
|
|
10 |
|
11 |
|
12 |
def imGreyAlpha(im):
|
13 |
-
|
|
|
|
|
14 |
grey = im.convert('L') # 转成灰度
|
15 |
px = grey.load() # 获取灰度数组
|
16 |
|
|
|
10 |
|
11 |
|
12 |
def imGreyAlpha(im):
|
13 |
+
if isinstance(im,np.ndarray):
|
14 |
+
im = Image.fromarray(im)
|
15 |
+
|
16 |
grey = im.convert('L') # 转成灰度
|
17 |
px = grey.load() # 获取灰度数组
|
18 |
|