From d0cd1eede9a4222fd3d5973e63e9edd5beb97bab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20de=20Paz?= Date: Tue, 8 Oct 2024 03:48:12 +0200 Subject: [PATCH] Added DOI and fixed small format issue of JSON in docs. --- README.md | 11 ++++++----- docs/usage.md | 10 +++++----- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2e3b108..e52a19f 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 } diff --git a/docs/usage.md b/docs/usage.md index e676baf..fd5bc0e 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -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 }