Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] Restrict mmdet version to avoid conflict when using mmpose 0.x #2433

Merged
merged 1 commit into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demo/docs/2d_animal_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ python demo/top_down_video_demo_full_frame_without_det.py \

#### Using MMDetection to detect animals

Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection).
Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection) **with version 2.x**.

**COCO-animals**

Expand Down
2 changes: 1 addition & 1 deletion demo/docs/2d_hand_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ python demo/top_down_img_demo.py \

We provide a demo script to run mmdet for hand detection, and mmpose for hand pose estimation.

Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection).
Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection) **with version 2.x**.

*Hand Box Model Preparation:* The pre-trained hand box estimation model can be found in [det model zoo](/demo/docs/mmdet_modelzoo.md).

Expand Down
2 changes: 1 addition & 1 deletion demo/docs/2d_human_pose_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ python demo/top_down_img_demo.py \

We provide a demo script to run mmdet for human detection, and mmpose for pose estimation.

Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection).
Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection) **with version 2.x**.

```shell
python demo/top_down_img_demo_with_mmdet.py \
Expand Down
2 changes: 1 addition & 1 deletion demo/docs/2d_pose_tracking_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

We provide a video demo to illustrate the pose tracking results.

Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection).
Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection) **with version 2.x**.

```shell
python demo/top_down_pose_tracking_demo_with_mmdet.py \
Expand Down
2 changes: 1 addition & 1 deletion demo/docs/2d_wholebody_pose_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ python demo/top_down_img_demo.py \

We provide a demo script to run mmdet for human detection, and mmpose for pose estimation.

Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection).
Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection) **with version 2.x**.

```shell
python demo/top_down_img_demo_with_mmdet.py \
Expand Down
2 changes: 1 addition & 1 deletion demo/docs/3d_human_pose_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ python demo/body3d_two_stage_img_demo.py \

#### Using mmdet for human bounding box detection and top-down model for the 1st stage (2D pose detection), and inference the 2nd stage (2D-to-3D lifting)

Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection).
Assume that you have already installed [mmdet](https://github.com/open-mmlab/mmdetection) **with version 2.x**.

```shell
python demo/body3d_two_stage_video_demo.py \
Expand Down
4 changes: 2 additions & 2 deletions requirements/mminstall.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mmcv-full>=1.3.8
mmdet>=2.14.0
mmtrack>=0.6.0
mmdet>=2.14.0,<3.0.0
mmtrack>=0.12.0,<1.0.0rc0