Meloo commited on
Commit
83bdc00
1 Parent(s): 6f932d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -154,7 +154,7 @@ def inference(image, upscale, large_input_flag, color_fix):
154
 
155
  # save results
156
  save_path = './out.png'
157
- cv2.imwrite(save_path, output)
158
 
159
  return (image, Image.fromarray(output)), save_path
160
 
 
154
 
155
  # save results
156
  save_path = './out.png'
157
+ cv2.imwrite(save_path, output[:, :, ::-1])
158
 
159
  return (image, Image.fromarray(output)), save_path
160