cym/baiduai

baiduai orc and so on

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Open Issues: 0

pkg:composer/cym/baiduai

v1.4 2019-06-25 06:00 UTC

This package is not auto-updated.

Last update: 2025-12-18 11:31:44 UTC


README

百度ai,支持对5.6的版本支持

安装

composer require cym/baiduai

使用

$ai = new Ai('app_id', 'api_key', 'api_secret'); $ocr = $ai->Ocr();

#人脸识别


$option = [       
        "face_field" => "age,beauty,expression,face_shape,gender,glasses,landmark,landmark72,landmark150,race,quality,eye_status,emotion,face_type",
        "max_face_num" => 1,
        "face_type" => 'LIVE'
    ];
];
其中url为远程图片地址
$face = $ai->Face()->detect($url, 'URL', $option);