pleonard commited on
Commit
e036234
1 Parent(s): e66e591
Files changed (2) hide show
  1. __pycache__/app.cpython-38.pyc +0 -0
  2. app.py +8 -8
__pycache__/app.cpython-38.pyc ADDED
Binary file (1.7 kB). View file
 
app.py CHANGED
@@ -6,14 +6,14 @@ from PIL import Image, ImageDraw, ImageFont
6
  import time
7
 
8
  dbackends = [
9
- 'opencv',
10
- 'ssd',
11
- 'dlib',
12
- 'mtcnn',
13
- 'retinaface',
14
- 'yolov8',
15
- 'yunet',
16
- 'fastmtcnn',
17
  ]
18
 
19
  annotated_image = gr.AnnotatedImage()
 
6
  import time
7
 
8
  dbackends = [
9
+ ['Haar Cascade (OpenCV)','opencv'],
10
+ ['Single Shot MultiBox Detector (OpenCV)','ssd'],
11
+ ['Histogram of Oriented Gradients (Dlib)','dlib'],
12
+ ['Multi-task CNN ','mtcnn'],
13
+ ['retinaface','retinaface'],
14
+ ['yolov8','yolov8'],
15
+ ['yunet','yunet'],
16
+ ['fastmtcnn','fastmtcnn']
17
  ]
18
 
19
  annotated_image = gr.AnnotatedImage()