OmidSakaki commited on
Commit
67dbe7a
·
verified ·
1 Parent(s): 408d1ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -155,8 +155,9 @@ def Plot_Result(raw_plate, digits) :
155
  # image = Image.fromarray(img)
156
  #image.save('output_image.jpg')
157
 
158
- #raw_plate.save('output_image.jpg')
159
- st.image(raw_plate, caption='This is how your final image looks like 😉')
 
160
 
161
 
162
 
 
155
  # image = Image.fromarray(img)
156
  #image.save('output_image.jpg')
157
 
158
+ raw_plate.save('output_image.jpg')
159
+ out_img = cv2.imread("output_image.jpg")
160
+ st.image(out_img, caption='This is how your final image looks like 😉')
161
 
162
 
163