We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 631a06d + 9217bfe commit 4c92a01Copy full SHA for 4c92a01
1 file changed
README.md
@@ -16,6 +16,10 @@ model = YoloDetector(target_size=720,gpu=0,min_face=90)
16
orgimg = np.array(Image.open('test_image.jpg'))
17
bboxes,points = model.predict(orgimg)
18
```
19
+You can also pass several images packed in a list to get multi-image predictions.
20
+```python
21
+bboxes,points = model.predict([image1,image2])
22
+```
23
If you want to use model class outside root folder, export it into you PYTHONPATH
24
```bash
25
export PYTHONPATH="${PYTHONPATH}:/path/to/yoloface/project/"
0 commit comments