下你所需,载你所想!
汇集开发技术源码资料

baiduOCR-SDK

:5.953MB :1 :2022-10-08 15:33:11

部分简介

baiduOCR-SDK如果开发者对于本文件有需要的可以参考。
百度SDK vs2013-win32-Debug环境:
1. 将baiduOCR文件夹放到项目根目录下
配置完成!
std::string app_id = "f22c4e9d19c146eba2bd3";
std::string api_key = "你的 Api key";
std::string secret_key = "你的 Secret Key";
aip::Bodyanalysis client(app_id, api_key, secret_key);
Json::Value result;
std::string image;
aip::get_file_content("/assets/sample.jpg", &image);
// 调用人体检测与属性识别
result = client.body_attr(image, aip::null);
// 如果有可选参数
std::map options;
options["type"] = "gender";
// 带参数调用人体检测与属性识别
result = client.body_attr(image, options);

热门推荐

相关文章