From 79537af22f8d1ef923457b857c8c577801b53180 Mon Sep 17 00:00:00 2001 From: Kaminyou Date: Sun, 26 May 2024 22:52:02 +0800 Subject: [PATCH] update changelog --- CHANGELOG.md | 4 ++++ README.md | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bee9e40..34fd91b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## v0.2.2 +### New features +- To protect patient's privacy, the default video change to a black background one with full keypoints shown. The setting can be changed by modify the `get_video` api in `backend/routers/user.py` + ## v0.2.1 ### Improvement - Add an automatical timestamp txt fixing logic diff --git a/README.md b/README.md index 14a1095..e0007ed 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,11 @@ For the details, please refer to [our papar](https://ieeexplore.ieee.org/documen ./backend/algorithms/gait_basic/VideoPose3D/checkpoint/pretrained_h36m_detectron_coco.bin ./backend/algorithms/gait_basic/gait_study_semi_turn_time/weights/semi_vanilla_v2/epoch_94.pth ``` +5. (Optional) By default, the video will be provided with a black backgound and full keypoints. If you would like to show the patients' body and the surrounding, please modify `backend/routers/user.py` + ```python + # video_path = f'data/{video_uuid}/out/render-black-background.mp4' # default one + video_path = f'data/{video_uuid}/out/render.mp4' # change to this one + ``` 5. Execute ``` $ docker-compose up --build -d