Files
uniface/uniface/__init__.py

35 lines
961 B
Python

# Copyright 2025 Yakhyokhuja Valikhujaev
#
# Licensed under the MIT License.
# You may obtain a copy of the License at
#
# https://opensource.org/licenses/MIT
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__license__ = "MIT"
__author__ = "Yakhyokhuja Valikhujaev"
__version__ = "0.1.6"
from uniface.retinaface import RetinaFace
from uniface.log import Logger
from uniface.model_store import verify_model_weights
from uniface.alignment import face_alignment
from uniface.visualization import draw_detections
__all__ = [
"__version__",
"__author__",
"__license__",
"RetinaFace",
"Logger",
"verify_model_weights",
"draw_detections",
"face_alignment"
]