├── README.md ├── facial_landmarks ├── 4.jpg ├── check_weights.py ├── facial_lm_model.py ├── inference.py ├── inference_folder.py ├── model_weights │ ├── face_landmark.tflite │ └── facial_landmarks.pth ├── test_images │ └── m@35189.2e16d0ba.fill-514x514.jpg ├── tflite2pt.py └── utils.py └── iris ├── inference.py ├── iris2.jpg ├── irismodel.py ├── model_weights ├── iris_landmark.tflite └── irislandmarks.pth ├── tfite2pt.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /facial_landmarks/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/4.jpg -------------------------------------------------------------------------------- /facial_landmarks/check_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/check_weights.py -------------------------------------------------------------------------------- /facial_landmarks/facial_lm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/facial_lm_model.py -------------------------------------------------------------------------------- /facial_landmarks/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/inference.py -------------------------------------------------------------------------------- /facial_landmarks/inference_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/inference_folder.py -------------------------------------------------------------------------------- /facial_landmarks/model_weights/face_landmark.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/model_weights/face_landmark.tflite -------------------------------------------------------------------------------- /facial_landmarks/model_weights/facial_landmarks.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/model_weights/facial_landmarks.pth -------------------------------------------------------------------------------- /facial_landmarks/test_images/m@35189.2e16d0ba.fill-514x514.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/test_images/m@35189.2e16d0ba.fill-514x514.jpg -------------------------------------------------------------------------------- /facial_landmarks/tflite2pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/tflite2pt.py -------------------------------------------------------------------------------- /facial_landmarks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/facial_landmarks/utils.py -------------------------------------------------------------------------------- /iris/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/iris/inference.py -------------------------------------------------------------------------------- /iris/iris2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/iris/iris2.jpg -------------------------------------------------------------------------------- /iris/irismodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/iris/irismodel.py -------------------------------------------------------------------------------- /iris/model_weights/iris_landmark.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/iris/model_weights/iris_landmark.tflite -------------------------------------------------------------------------------- /iris/model_weights/irislandmarks.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/iris/model_weights/irislandmarks.pth -------------------------------------------------------------------------------- /iris/tfite2pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/iris/tfite2pt.py -------------------------------------------------------------------------------- /iris/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiqq111/mediapipe_pytorch/HEAD/iris/utils.py --------------------------------------------------------------------------------