使用maven依赖或导入jar包部分不说明了,目前官方的sdk是最新的。
sdk下载:https://ai.baidu.com/sdk#anti
代码部分仅供参考
public class sample {
//设置APPID/AK/SK
public static final String APP_ID = "你的 App ID";
public static final String API_KEY = "你的 Api Key";
public static final String SECRET_KEY = "你的 Secret Key";
public static void main(String[] args) {
// 初始化一个AipContentCensor
AipContentCensor client = new AipContentCensor(APP_ID, API_KEY, SECRET_KEY);
// 可选:设置网络连接参数
client.setConnectionTimeoutInMillis(2000);
client.setSocketTimeoutInMillis(60000);
//下面发送图片的几种方式三选一:
// 参数为本地图片路径
String path = "test.jpg";
JSONObject response = client.imageCensorUserDefined(path, EImgType.FILE,null);
System.out.println(response.toString());
// 参数为url
String url = "http://testurl";
response = client.imageCensorUserDefined(url, EImgType.URL, null);
System.out.println(response.toString());
// 参数为本地图片文件二进制数组
byte[] file = readImageFile(imagePath);
response = client.imageCensorUserDefined(file, null);
System.out.println(response.toString());
}
}
返回详情原文档:https://ai.baidu.com/ai-doc/ANTIPORN/tk3h6xdji
策略教程文档:https://ai.baidu.com/ai-doc/ANTIPORN/Jk3h6x8t2
收藏
点赞
0
个赞
请登录后评论
TOP
切换版块