回答編集履歴
1
test
CHANGED
@@ -23,3 +23,31 @@
|
|
23
23
|
|
24
24
|
|
25
25
|
どちらでも行けると思います。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
---
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
追補
|
34
|
+
|
35
|
+
[元のコード](https://github.com/serengil/retinaface/blob/c920f4e2b91e1ec04bdde013b3d29a4041ead59c/retinaface/RetinaFace.py#L58-63)のget_imageの関数**以降を自前のコードで使えば対策B**、get_imageの関数**を自前の読み込み関数に差し替えれば対策A**です。
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
```Python3
|
40
|
+
|
41
|
+
def detect_faces(img_path, threshold=0.9, model = None, allow_upscaling = True):
|
42
|
+
|
43
|
+
"""
|
44
|
+
|
45
|
+
TODO: add function doc here
|
46
|
+
|
47
|
+
"""
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
img = get_image(img_path)
|
52
|
+
|
53
|
+
```
|