mirror of
https://github.com/serengil/deepface.git
synced 2025-06-04 02:20:06 +00:00
bug fixes
- license mentioned in setup.py - face region when detector skipped
This commit is contained in:
parent
4c7109d74c
commit
9b11fecfb2
@ -84,7 +84,7 @@ def represent(
|
|||||||
img_objs = [
|
img_objs = [
|
||||||
{
|
{
|
||||||
"face": img,
|
"face": img,
|
||||||
"facial_area": {"x": 0, "y": 0, "w": img.shape[1], "h": img.shape[2]},
|
"facial_area": {"x": 0, "y": 0, "w": img.shape[0], "h": img.shape[1]},
|
||||||
"confidence": 0,
|
"confidence": 0,
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
1
setup.py
1
setup.py
@ -33,5 +33,6 @@ setuptools.setup(
|
|||||||
"console_scripts": ["deepface = deepface.DeepFace:cli"],
|
"console_scripts": ["deepface = deepface.DeepFace:cli"],
|
||||||
},
|
},
|
||||||
python_requires=">=3.7",
|
python_requires=">=3.7",
|
||||||
|
license="MIT",
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user