avanish07 commited on
Commit
9f2764c
·
1 Parent(s): 9110d3b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -5
app.py CHANGED
@@ -15,15 +15,28 @@ def show_preds_image(image):
15
 
16
  image = cv2.imread(image_path)
17
  outputs = model.predict(source=image_path)
18
- results = outputs[0].cpu().numpy()
19
- for i, det in enumerate(results.boxes.xyxy):
 
 
 
20
  cv2.rectangle(
21
  image,
22
- (int(det[0]), int(det[1])),
23
- (int(det[2]), int(det[3])),
24
  color=(0, 0, 255),
25
  thickness=2,
26
- lineType=cv2.LINE_AA
 
 
 
 
 
 
 
 
 
 
27
  )
28
  os.remove(image_path) # Remove the temporary image file
29
  return cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
 
15
 
16
  image = cv2.imread(image_path)
17
  outputs = model.predict(source=image_path)
18
+ #print("output>>>>>>>>>>>>>>>>>>>>>>>>", outputs)
19
+ results = outputs[0].boxes.xyxy.cpu().numpy()
20
+ for det in results:
21
+ x1, y1, x2, y2 = det[:4]
22
+ label = "Pothole"
23
  cv2.rectangle(
24
  image,
25
+ (int(x1), int(y1)),
26
+ (int(x2), int(y2)),
27
  color=(0, 0, 255),
28
  thickness=2,
29
+ lineType=cv2.LINE_AA,
30
+ )
31
+ cv2.putText(
32
+ image,
33
+ label,
34
+ (int(x1), int(y1) - 10),
35
+ cv2.FONT_HERSHEY_SIMPLEX,
36
+ 0.9,
37
+ (0, 0, 255),
38
+ 2,
39
+ cv2.LINE_AA,
40
  )
41
  os.remove(image_path) # Remove the temporary image file
42
  return cv2.cvtColor(image, cv2.COLOR_BGR2RGB)