-
Notifications
You must be signed in to change notification settings - Fork 520
/
detect.java
88 lines (76 loc) · 3.06 KB
/
detect.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// <dependencies>
// This sample uses Apache HttpComponents:
// http://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/
// https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/
import java.net.URI;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
import org.json.JSONArray;
import org.json.JSONObject;
// </dependencies>
// <environment>
/*
* To compile and run, enter the following at a command prompt:
* javac Detect.java -cp .;lib\*
* java -cp .;lib\* Detect
*/
public class Detect {
private static final String subscriptionKey = "PASTE_YOUR_FACE_SUBSCRIPTION_KEY_HERE";
private static final String endpoint = "PASTE_YOUR_FACE_ENDPOINT_HERE";
private static final String imageWithFaces =
"{\"url\":\"https://upload.wikimedia.org/wikipedia/commons/c/c3/RH_Louise_Lillian_Gish.jpg\"}";
// </environment>
// <main>
public static void main(String[] args) {
HttpClient httpclient = HttpClientBuilder.create().build();
try
{
URIBuilder builder = new URIBuilder(endpoint + "/face/v1.0/detect");
// Request parameters. All of them are optional.
builder.setParameter("detectionModel", "detection_03");
builder.setParameter("returnFaceId", "true");
// Prepare the URI for the REST API call.
URI uri = builder.build();
HttpPost request = new HttpPost(uri);
// Request headers.
request.setHeader("Content-Type", "application/json");
request.setHeader("Ocp-Apim-Subscription-Key", subscriptionKey);
// Request body.
StringEntity reqEntity = new StringEntity(imageWithFaces);
request.setEntity(reqEntity);
// Execute the REST API call and get the response entity.
HttpResponse response = httpclient.execute(request);
HttpEntity entity = response.getEntity();
// </main>
// <print>
if (entity != null)
{
// Format and display the JSON response.
System.out.println("REST Response:\n");
String jsonString = EntityUtils.toString(entity).trim();
if (jsonString.charAt(0) == '[') {
JSONArray jsonArray = new JSONArray(jsonString);
System.out.println(jsonArray.toString(2));
}
else if (jsonString.charAt(0) == '{') {
JSONObject jsonObject = new JSONObject(jsonString);
System.out.println(jsonObject.toString(2));
} else {
System.out.println(jsonString);
}
}
}
catch (Exception e)
{
// Display error message.
System.out.println(e.getMessage());
}
}
}
// </print>