标签: python opencv computer-vision face-detection
我正在尝试为每个检测到的面部添加蒙版:
plot_ly(iris, x=~Sepal.Length, y=~Sepal.Width) # works as expected plot_ly(iris, x=~'Sepal.Length', y=~'Sepal.Width') # fails since it doesn't use the column
我要解决的问题:蒙版仅出现在一张脸上(我想向检测到的所有脸都添加一个蒙版)。任何有用的信息都将非常有用。谢谢!