forked from open-mmlab/mmsegmentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix opencv(4.5.2) and smplx(0.1.27) compatibility (open-mmlab#635)
* fix opencv-python 4.5.2 compatibility BottomUpRandomAffine fails with opencv-python>=4.5.2 because a single valued numpy.ndarray is no longer a valid data type for image_size in cv2.warpAffine. This commit fix it by repacing image_size with image_size.item(). * fix smplx 0.1.27 compatibility smplx>=0.1.27 requires loguru, which will not be automatically installed when installing smplx. So we add loguru into mmpose requirements.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
albumentations>=0.3.2 | ||
loguru | ||
onnx | ||
onnxruntime | ||
poseval@git+https://github.com/svenkreiss/poseval.git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters