作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用python中的opencv和face_recognition库捕获图像,
这是我的程序的片段
while True:
ret,frame = video_capture.read()
rgb_frame = frame[:,:,::-1]
face_locations = fr.face_locations(rgb_frame)
face_encodings = fr.face_encodings(rgb_frame,face_locations)
cv2.imwrite('test.png', frame)
if len(face_encodings)!=0:
print(face_locations)
temp = list(face_locations[0])
img = cv2.imread('test.png')
cropped = img[temp[0]:temp[2],temp[0]:temp[1]]
cv2.imshow("cropped", cropped)
cv2.imwrite('face.png',cropped)
我正在尝试将裁剪的图像保存到我的目录中。但是上面的代码不起作用。您知道如何使用opencv保存裁剪后的图像的方式吗?
最佳答案
试试这个cv2.imwrite('path/to/face.png',cropped)
关于python - 如何使用openCV保存裁切的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64596679/
给骨头系统开发的图像库的 imagick 部分 ,支持 gif , 完美支持裁切、生成缩略图、添加水印 。 支持按方位生成缩略图像, 如: ?
我是一名优秀的程序员,十分优秀!