Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,11 +16,18 @@ from utils.torch_utils import select_device, load_classifier, time_synchronized,
|
|
16 |
|
17 |
|
18 |
os.system('git clone https://github.com/WongKinYiu/yolov7')
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
parser = argparse.ArgumentParser()
|
25 |
parser.add_argument('--weights', nargs='+', type=str, default=model+".pt", help='model.pt path(s)')
|
26 |
parser.add_argument('--source', type=str, default='Temp_files/', help='source')
|
@@ -153,10 +160,11 @@ def Custom_detect(img):
|
|
153 |
|
154 |
return Image.fromarray(im0[:,:,::-1])
|
155 |
inp = gr.Image(type="pil")
|
|
|
156 |
output = gr.Image(type="pil")
|
157 |
|
158 |
examples=["Examples/Image1.jpg","Examples/Image14.jpg","Examples/Image32.jpg"]
|
159 |
|
160 |
-
io=gr.Interface(fn=Custom_detect, inputs=inp, outputs=output, title='Vehicle Detection With Custom YOLOv7',examples=examples,cache_examples=False)
|
161 |
io.launch()
|
162 |
|
|
|
16 |
|
17 |
|
18 |
os.system('git clone https://github.com/WongKinYiu/yolov7')
|
19 |
+
os.system('wget https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7.pt')
|
20 |
+
os.system('wget https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7-mask.pt')
|
21 |
+
|
22 |
+
#model='best'
|
23 |
+
def Custom_detect(img,mode):
|
24 |
+
if mode=='Custom Detection':
|
25 |
+
model='best'
|
26 |
+
elif mode=='Instance Segmentation':
|
27 |
+
model='yolov7-mask'
|
28 |
+
else:
|
29 |
+
model='yolov7'
|
30 |
+
|
31 |
parser = argparse.ArgumentParser()
|
32 |
parser.add_argument('--weights', nargs='+', type=str, default=model+".pt", help='model.pt path(s)')
|
33 |
parser.add_argument('--source', type=str, default='Temp_files/', help='source')
|
|
|
160 |
|
161 |
return Image.fromarray(im0[:,:,::-1])
|
162 |
inp = gr.Image(type="pil")
|
163 |
+
inp2= gr.Dropdown((default="Custom Detection",choices=["Custom Detection","Instance Segmentation","Yolov7 model detection"])]
|
164 |
output = gr.Image(type="pil")
|
165 |
|
166 |
examples=["Examples/Image1.jpg","Examples/Image14.jpg","Examples/Image32.jpg"]
|
167 |
|
168 |
+
io=gr.Interface(fn=Custom_detect, inputs=[inp,inp2], outputs=output, title='Vehicle Detection With Custom YOLOv7',examples=examples,cache_examples=False)
|
169 |
io.launch()
|
170 |
|