如何将34个面部标志点转换为68个点?

How to convert 34 facial landmark points to 68 points?

通过使用 Google Cloud Vision,它检测到面部并且 returns 只有 34 个面部标志点。
有什么方法可以从现有的 34 个标志点生成/导出 68 个面部标志点,例如用 dlib 生成?

我找到了自己的方法,从 34 个地标点构建 68 个地标点。

  • I selected 2 adjacent points and manually add a point between it through a loop.
  • I used Formula of drawing an arc to add a point, it is a bit more natural way instead of placing a point in the center of 2 points.