feat: bodyparts module file
This commit is contained in:
parent
8a84863e30
commit
3507191a23
8
src/bodyparts/__init__.py
Normal file
8
src/bodyparts/__init__.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from .body import Body
|
||||
from .crown import Crown
|
||||
from .ear import Ear
|
||||
from .eye import Eye
|
||||
from .head import Head
|
||||
from .moustache import Moustache
|
||||
from .mouth import Mouth
|
||||
from .test import Test
|
|
@ -4,13 +4,7 @@ import cv2
|
|||
import mediapipe as mp
|
||||
import pygame as pg
|
||||
|
||||
from bodyparts.body import Body
|
||||
from bodyparts.crown import Crown
|
||||
from bodyparts.ear import Ear
|
||||
from bodyparts.eye import Eye
|
||||
from bodyparts.head import Head
|
||||
from bodyparts.moustache import Moustache
|
||||
from bodyparts.mouth import Mouth
|
||||
from bodyparts import Body, Crown, Ear, Eye, Head, Moustache, Mouth, Test
|
||||
from utils import landmark3vec
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue