图像识别 Image-Java语言API示例
时间:2023-11-01 16:19:18
Java语言API示例
本示例以图像标签为例介绍如何使用JAVA调用API。
package com.huawei.ais.demo;import com.huawei.ais.sdk.util.HttpClientUtils;import java.io.File;import java.io.IOException;import java.net.URISyntaxException;import org.apache.http.Header;import org.apache.http.HttpResponse;import org.apache.http.entity.StringEntity;import org.apache.commons.codec.binary.Base64;import org.apache.commons.io.FileUtils;import org.apache.commons.io.IOUtils;import com.alibaba.fastjson.JSONObject;import org.apache.http.entity.ContentType;import org.apache.http.message.BasicHeader;/** * 此demo仅供测试使用,强烈建议使用SDK * 使用前需配置依赖jar包。jar包可通过下载SDK获取 */public class ImageTaggingDemo {public static void main(String[] args) throws URISyntaxException, UnsupportedOperationException, IOException{TokenDemo();}public static void TokenDemo() throws URISyntaxException, UnsupportedOperationException, IOException {String url = "https://{endpoint}/v2/{project_id}/image/tagging";String token = "用户获取得到的实际token值";String imgPath = "data/image-tagging.jpg"; //File path or URL of the image to be recognized.JSONObject params = new JSONObject();try {if (imgPath.indexOf("http://") != -1 || imgPath.indexOf("https://") != -1) {params.put("url", imgPath);} else {byte[] fileData = FileUtils.readFileToByteArray(new File(imgPath));String fileBase64Str = Base64.encodeBase64String(fileData);params.put("image", fileBase64Str);}Header[] headers = new Header[]{new BasicHeader("X-Auth-Token", token), new BasicHeader("Content-Type", ContentType.APPLICATION_JSON.toString())};StringEntity stringEntity = new StringEntity(params.toJSONString(), "utf-8");HttpResponse response = HttpClientUtils.post(url, headers, stringEntity);String content = IOUtils.toString(response.getEntity().getContent(), "utf-8");System.out.println(content);}catch (Exception e) {e.printStackTrace();}}}
父主题: 应用示例
support.huaweicloud.com/api-image/image_03_0017.html
看了此文的人还看了
CDN加速
GaussDB
文字转换成语音
免费的服务器
如何创建网站
域名网站购买
私有云桌面
云主机哪个好
域名怎么备案
手机云电脑
SSL证书申请
云点播服务器
免费OCR是什么
电脑云桌面
域名备案怎么弄
语音转文字
文字图片识别
云桌面是什么
网址安全检测
网站建设搭建
国外CDN加速
SSL免费证书申请
短信批量发送
图片OCR识别
云数据库MySQL
个人域名购买
录音转文字
扫描图片识别文字
OCR图片识别
行驶证识别
虚拟电话号码
电话呼叫中心软件
怎么制作一个网站
Email注册网站
华为VNC
图像文字识别
企业网站制作
个人网站搭建
华为云计算
免费租用云托管
云桌面云服务器
ocr文字识别免费版
HTTPS证书申请
图片文字识别转换
国外域名注册商
使用免费虚拟主机
云电脑主机多少钱
鲲鹏云手机
短信验证码平台
OCR图片文字识别
SSL证书是什么
申请企业邮箱步骤
免费的企业用邮箱
云免流搭建教程
域名价格
推荐文章
- 图像识别_图像识别是什么_图像识别应用场景
- 图像识别Image服务_什么是图像识别_图像识别应用场景
- 华为云CodeArts API_API质量_API规范_API审核
- 华为云CodeArts API_什么是API_APIFirst_API设计
- 华为云CodeArts API_APIFirst_API设计_API设计规范_API全生命周期
- 调用API_API调用流程_API网关APIG-华为云
- 华为云CodeArts API_API测试_API托管-华为云
- 华为云CodeArts API_API调试
- 华为云CodeArts API_如何在CodeArts API中发布API
- 开放API_API开放流程_调用API-华为云