Skip to content

Commit

Permalink
Added DOI and fixed small format issue of JSON in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Iván de Paz committed Oct 8, 2024
1 parent b6eba4b commit d0cd1ee
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
![Test Status](https://github.com/ipazc/mtcnn/actions/workflows/tests.yml/badge.svg)
![Pylint Check](https://github.com/ipazc/mtcnn/actions/workflows/pylint.yml/badge.svg)
![PyPI Downloads](https://img.shields.io/pypi/dm/mtcnn)
![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.13901379.svg)


## Overview
Expand Down Expand Up @@ -55,11 +56,11 @@ Output example:
{
"box": [277, 90, 48, 63],
"keypoints": {
"nose": (303, 131),
"mouth_right": (313, 141),
"right_eye": (314, 114),
"left_eye": (291, 117),
"mouth_left": (296, 143)
"nose": [303, 131],
"mouth_right": [313, 141],
"right_eye": [314, 114],
"left_eye": [291, 117],
"mouth_left": [296, 143]
},
"confidence": 0.9985
}
Expand Down
10 changes: 5 additions & 5 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ The `result` will contain the bounding box and facial landmarks for each detecte
{
"box": [277, 90, 48, 63],
"keypoints": {
"nose": (303, 131),
"mouth_right": (313, 141),
"right_eye": (314, 114),
"left_eye": (291, 117),
"mouth_left": (296, 143)
"nose": [303, 131],
"mouth_right": [313, 141],
"right_eye": [314, 114],
"left_eye": [291, 117],
"mouth_left": [296, 143]
},
"confidence": 0.9985
}
Expand Down

0 comments on commit d0cd1ee

Please sign in to comment.