face_recognition和图像处理中left、top、right、bottom解释

发布时间:2024年01月23日
import face_recognition
face_locations = face_recognition.face_locations(demo_image, model='hog')

print(face_locations)

输出:[(426, 1429, 555, 1300), (528, 1062, 795, 795)]
上面的格式是[top, right, bottom, left]
看下面的图片知道第一张人脸的坐标
左上角坐标:(left, top) = (1300, 426)
右上角坐标:(right, bottom) = (1429, 555)
其中:
left,top为左上角的点坐标
right,bottom为右下角的点坐标

转换一下为opencv常用的:
x=left
y=top
width=right-left
height=bottom-top
在这里插入图片描述
以上参考:MFC:矩形left、right、top、bottom的表示_转载

文章来源:https://blog.csdn.net/qq_45893319/article/details/135761125
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。