Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://youtu.be/DNKAvDeqH_Y | |
# https://google.github.io/mediapipe/solutions/iris.html#ml-pipeline | |
# https://google.github.io/mediapipe/solutions/face_mesh.html#python-solution-api | |
import cv2 as cv | |
import numpy as np | |
from mediapipe import solutions | |
LEFT_IRIS = [pair[0] for pair in solutions.face_mesh.FACEMESH_LEFT_IRIS] | |
RIGHT_IRIS = [pair[0] for pair in solutions.face_mesh.FACEMESH_RIGHT_IRIS] |
OlderNewer