mirror of https://github.com/alibaba/EasyCV.git
10 lines
580 B
Python
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 |