saritha5 commited on
Commit
c4d747c
·
1 Parent(s): 36ed682

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -96,11 +96,11 @@ else:
96
  def occ_predict(imgpath):
97
  im = []
98
  st.header(imgpath)
99
- image=cv2.imread(imgpath)
100
 
101
  #imgplot = plt.imshow(image)
102
  #plt.show()
103
- img = Image.fromarray(image, 'RGB')
104
  resize_image = img.resize((50, 50))
105
  im.append(np.array(resize_image))
106
  fv = np.array(im)
@@ -134,7 +134,7 @@ else:
134
  #image_path = Path(f.name)
135
  #st.write(image_path)
136
 
137
- predicted_label,variance_score = occ_predict(f.name)
138
  #st.header(predicted_label)
139
  #st.header(str(round(variance_score,2)))
140
  string1 = "The image is," + predicted_label + " with the score value of " + str(round(variance_score,2))
 
96
  def occ_predict(imgpath):
97
  im = []
98
  st.header(imgpath)
99
+ #image=cv2.imread(imgpath)
100
 
101
  #imgplot = plt.imshow(image)
102
  #plt.show()
103
+ img = Image.fromarray(imgpath, 'RGB')
104
  resize_image = img.resize((50, 50))
105
  im.append(np.array(resize_image))
106
  fv = np.array(im)
 
134
  #image_path = Path(f.name)
135
  #st.write(image_path)
136
 
137
+ predicted_label,variance_score = occ_predict(image1)
138
  #st.header(predicted_label)
139
  #st.header(str(round(variance_score,2)))
140
  string1 = "The image is," + predicted_label + " with the score value of " + str(round(variance_score,2))