优微视开发者社区

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 836|回复: 0

监测实时图像中的人脸

[复制链接]

26

主题

26

帖子

109

积分

版主

Rank: 7Rank: 7Rank: 7

积分
109
发表于 2023-5-12 10:55:42 | 显示全部楼层 |阅读模式
import image
import sensor
import ai
sensor.reset()
ml = ai.load(ai.FACE_DETECT)
print(ml)
roi = (620,220,640,640)
def loop():
    img = sensor.snapshot()
    #img.draw_rectangle(roi, color=(0,0,255), thickness=4)
    out = ml.forward(img,roi=roi)
    for it in out:
        print(it.rect())
        img.draw_rectangle(it.rect(),color=(0,255,0), thickness=4)

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Youvtec Inc. ( 粤ICP备15097825号-1 )

GMT+8, 2024-11-1 09:31 , Processed in 0.133325 second(s), 26 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表