0llheaven commited on
Commit
ee3ad1d
·
verified ·
1 Parent(s): 05c75af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +30 -3
app.py CHANGED
@@ -1,7 +1,34 @@
1
  import gradio as gr
 
 
 
 
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  demo.launch()
 
1
  import gradio as gr
2
+ import torch
3
+ import cv2
4
+ from PIL import Image
5
+ import numpy as np
6
+ from ultralytics import YOLO
7
 
8
+ # โหลดโมเดล YOLOv8 ที่ฝึกมาเอง
9
+ model = YOLO('your_model.pt') # เปลี่ยน 'your_model.pt' เป็นโมเดลของคุณ
10
 
11
+ def predict(image):
12
+ # ทำการทำนาย
13
+ results = model(image)
14
+ df = results.pandas().xyxy[0] # ผลลัพธ์การทำนายในรูปแบบ pandas DataFrame
15
+
16
+ # วาด bounding boxes และ labels บนภาพ
17
+ for _, row in df.iterrows():
18
+ label = row['name']
19
+ confidence = row['confidence']
20
+ x1, y1, x2, y2 = int(row['xmin']), int(row['ymin']), int(row['xmax']), int(row['ymax'])
21
+
22
+ # วาด bounding box
23
+ cv2.rectangle(image, (x1, y1), (x2, y2), (0, 255, 0), 2)
24
+
25
+ # วาด label และ confidence
26
+ label_text = f"{label} {confidence:.2f}"
27
+ cv2.putText(image, label_text, (x1, y1 - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 2)
28
+
29
+ # แปลงภาพกลับเป็นรูปแบบที่ Gradio สามารถแสดงได้
30
+ pil_image = Image.fromarray(cv2.cvtColor(image, cv2.COLOR_BGR2RGB))
31
+ return pil_image
32
+
33
+ demo = gr.Interface(fn=predict, inputs=gr.inputs.Image(type="numpy"), outputs="image")
34
  demo.launch()