POST api/EasyFace/DetectText
Request Information
URI Parameters
None.
Body Parameters
DetectLabelsRequest1| Name | Description | Type | Additional information |
|---|---|---|---|
| ImageBase64 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ImageBase64": "sample string 1"
}
application/xml, text/xml
Sample:
<DetectLabelsRequest1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ReconocimientoFacial.Models"> <ImageBase64>sample string 1</ImageBase64> </DetectLabelsRequest1>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DetectLabelsResponse1| Name | Description | Type | Additional information |
|---|---|---|---|
| Labels | Collection of string |
None. |
|
| Result | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Labels": [
"sample string 1",
"sample string 2"
],
"Result": true
}
application/xml, text/xml
Sample:
<DetectLabelsResponse1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ReconocimientoFacial.Models">
<Labels xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Labels>
<Result>true</Result>
</DetectLabelsResponse1>