saritha5 commited on
Commit
a11c423
·
1 Parent(s): ebd6320

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -98,10 +98,10 @@ def prediction(image_path):
98
  fig.suptitle('Tag Deciphering')
99
 
100
  ax[0].imshow(image_np_orignal,aspect='auto');
101
- fig1 = ax[1].imshow(image_np,aspect='auto');
102
 
103
 
104
- return objects,fig1
105
 
106
 
107
 
 
98
  fig.suptitle('Tag Deciphering')
99
 
100
  ax[0].imshow(image_np_orignal,aspect='auto');
101
+ ax[1].imshow(image_np,aspect='auto');
102
 
103
 
104
+ return objects,image_np_orignal
105
 
106
 
107