例程讲解05-Snapshot->snapshot_on_face_detection人脸识别拍照

# 人脸识别拍照例程
#
# 注意:您将需要SD卡来运行此示例。
#
# 这个例子演示了如何在你的OpenMV Cam上使用面部追踪来拍照。

import sensor, image, pyb

RED_LED_PIN = 1
BLUE_LED_PIN = 3

sensor.reset() # Initialize the camera sensor.
sensor.set_pixformat(sensor.GRAYSCALE)
sensor.set_framesize(sensor.HQVGA) # or sensor.QQVGA (or others)
sensor.skip_frames(time = 2000) # Let new settings take affect.

# 加载人脸检测HaarCascade。 这是OpenMV Cam可以使用下面的
# find_features()方法来检测人脸的对象。 您的OpenMV具有HaarCascade
# 内置的人脸模型。 默认情况下,HaarCascade的所有阶段都被加载。 但是,
# 您可以调整阶段的数量来加快处理速度,但要以准确性为代价。 
# HaarCascade的前面有25个阶段。

face_cascade = image.HaarCascade("frontalface", stages=25)

while(True):

    pyb.LED(RED_LED_PIN).on()
    print("About to start detecting faces...")
    sensor.skip_frames(time = 2000) # Give the user time to get ready.

    pyb.LED(RED_LED_PIN).off()
    print("Now detecting faces!")
    pyb.LED(BLUE_LED_PIN).on()

    diff = 10 # We'll say we detected a face after 10 frames.
    while(diff):
        img = sensor.snapshot()
        # Threshold是介于0.0-1.0的阈值,较低值会同时提高检出率和假阳性
        # 率。相反,较高值会同时降低检出率和假阳性率。
        # scale是一个必须大于1.0的浮点数。较高的比例因子运行更快,
        # 但其图像匹配相应较差。理想值介于1.35-1.5之间。
        faces = img.find_features(face_cascade, threshold=0.5, scale_factor=1.5)

        if faces:
            diff -= 1
            for r in faces:
                img.draw_rectangle(r)

    pyb.LED(BLUE_LED_PIN).off()
    print("Face detected! Saving image...")
    sensor.snapshot().save("snapshot-%d.jpg" % pyb.rng()) # Save Pic.

星瞳科技OpenMV官方中文文档函数讲解:

results matching ""

    No results matching ""