youl commited on
Commit
0f019c5
·
1 Parent(s): c8a1260

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -70,6 +70,8 @@ if file_name is not None:
70
  plot_img_bbox(image, nms_prediction)
71
  pred = np.array(Image.open("pred.jpg"))
72
  col2.image(pred, use_column_width=True)
 
 
73
 
74
 
75
 
 
70
  plot_img_bbox(image, nms_prediction)
71
  pred = np.array(Image.open("pred.jpg"))
72
  col2.image(pred, use_column_width=True)
73
+ word = "Number of palm trees detected : "+str(len(nms_prediction["boxes"]))
74
+ st.write(word)
75
 
76
 
77