mouth_mask = list(range(94, 114)) + list(range(146, 178)) + list(range(183, 192))
upper_mask = [x for x in range(192) if x not in mouth_mask]
In the evalution of the code, I looked for how to calculate the LVE and FDD because the facial vector as a whole, how to know which positional information values represent the lip and the other region.
So how to define the mask?
Thanks.