已知一张图的人脸轮廓坐标,怎么把人脸部分单独提取出来?
比如用 const coordinate = [[x1,y1],[x2,y2]]
表示人脸坐标
const canvas = document.createElement('canvas')
const ctx = canvas.getContext('2d')
const coordinate = [[100,100],[200,200]]
const [x1, y1] = coordinate[0];
const [x2, y2] = coordinate[1];
const clipWidth = Math.abs(x2 - x1);
const clipHeight = Math.abs(y2 - y1);
const img = new Image()
img.src = "原图URL"
img.onload = ()=>{
ctx.drawImage(img,x1,y1,clipWidth,clipHeight,0,0,clipWidth,clipHeight)
const data = canvas.toDataURL('image/png')
}
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答1.5k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
3 回答2.2k 阅读✓ 已解决
2d.getImageData()
获取指定区域的的图像数据
如果你还想要不规则的区域,可以自己剪裁
2d.clip()