EasyCV/easycv/thirdparty/__init__.py
Cathy0908 7f08eb6b3f
merge internal master 20221027 (#216)
* avoid numpy version check when xtcocotools can be imported 

Link: https://code.alibaba-inc.com/pai-vision/EasyCV/codereview/10377599

* * move thirdparty into easycv
 * fix code style
        Link: https://code.alibaba-inc.com/pai-vision/EasyCV/codereview/10395748

    * move thirdparty into easycv

* fix missing thirdparty/deformable_attention/src when build package

* optimize ci_test

* update version to 0.6.3.8 
        Link: https://code.alibaba-inc.com/pai-vision/EasyCV/codereview/10412059

    * update version to 0.6.3.8

* fix face keypoints bugs in FT

* update version to 0.6.3.9 
        Link: https://code.alibaba-inc.com/pai-vision/EasyCV/codereview/10443200

    * update version to 0.6.3.9

* fix import thirdparty

* fix unittest

* fix unittest

Co-authored-by: wenmeng.zwm <wenmeng.zwm@alibaba-inc.com>
Co-authored-by: shouzhou.bx <shouzhou.bx@alibaba-inc.com>
2022-11-01 10:48:12 +08:00

10 lines
580 B
Python

# comments all import to avoid cycle import, every usage of thirdparity should dig into next level
# mtcnn for facedetect & face keypoint
# from .mtcnn import FaceDetector # using https://github.com/inkuang/MTCNN-PyTorch, and reshape the landmarks output by wzh to fit the alignment
# face_align for face alignment with input image & face keypoint
# from .face_align import glint360k_align
# u2sod borrow from U2net to implement salient object detection with out training #https://github.com/xuebinqin/U-2-Net, Apache License 2.0
# from .u2sod.sodpredictor import SODPredictor