如何检测frontal_face_detector detector = get_frontal_face_detector();是否成功

姚智
2023-12-01

可以在使用frontal_face_detector detector = get_frontal_face_detector();之后,使用if语句判断detector是否为空。如果detector不为空,则表示成功。 例如:

frontal_face_detector detector = get_frontal_face_detector();if(detector)
{
    //detector成功
}
else
{
    //detector失败
}
 类似资料: