johnhelf commited on
Commit
8e31ba0
·
1 Parent(s): fcfb7f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -10,7 +10,9 @@ from codeinterpreterapi import CodeInterpreterSession
10
 
11
 
12
  def imGreyAlpha(im):
13
- im = Image.fromarray(im)
 
 
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