Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hackassin
GitHub Repository: hackassin/learnopencv
Path: blob/master/FaceMaskOverlay/lib/models/__init__.py
3443 views
1
2
# ------------------------------------------------------------------------------
3
# Copyright (c) Microsoft
4
# Licensed under the MIT License.
5
# Written by Tianheng Cheng ([email protected])
6
# ------------------------------------------------------------------------------
7
8
from __future__ import absolute_import
9
from __future__ import division
10
from __future__ import print_function
11
12
from .hrnet import get_face_alignment_net, HighResolutionNet
13
14
__all__ = ['HighResolutionNet', 'get_face_alignment_net']
15
16