gpt4 book ai didi

android - 如何通过http post将位图发送到人脸检测azure api

转载 作者:行者123 更新时间:2023-12-03 03:04:05 24 4
gpt4 key购买 nike

在我的 Android 应用程序中,用户通过相机拍照。然后它可以作为位图使用:

Bitmap photo = (Bitmap) data.getExtras().get("data");

我想通过 http post 发送到 Azure 人脸检测 API。目前我只能使用给定的图片 URL:

StringEntity reqEntity = new StringEntity("{\"url\":\"https://upload.wikimedia.org/wikipedia/commons/c/c3/RH_Louise_Lillian_Gish.jpg\"}");
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = httpclient.execute(request)

如何使用位图照片将其发送到azure?

最佳答案

根据the API reference of Azure Face Detect ,您可以使用具有 application/octet-stream 内容类型的 API 将 Android 位图作为二进制数据传递。

作为引用,这是我的示例代码。

String url = "https://westus.api.cognitive.microsoft.com/face/v1.0/detect";
HttpClient httpclient = new DefaultHttpClient();
HttpPost request = new HttpPost(url);
request.setHeader("Content-Type", "application/octet-stream")
request.setHeader("Ocp-Apim-Subscription-Key", "{subscription key}");

// Convert Bitmap to InputStream
Bitmap photo = (Bitmap) data.getExtras().get("data");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
photo.compress(Bitmap.CompressFormat.JPEG, 100, baos);
InputStream photoInputStream = new ByteArrayInputStream(baos.toByteArray());
// Use Bitmap InputStream to pass the image as binary data
InputStreamEntity reqEntity = new InputStreamEntity(photoInputStream, -1);
reqEntity.setContentType("image/jpeg");
reqEntity.setChunked(true);

request.setEntity(reqEntity);
HttpResponse response = httpclient.execute(request);

希望有帮助。

关于android - 如何通过http post将位图发送到人脸检测azure api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46136044/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com