Extract texts inside a rectangle from an image
Request Body schema: application/x-www-form-urlencodedrequired
image required | string <binary> The image to extract texts |
top_left_x required | integer The x coordinate of the top left corner of the rectangle |
top_left_y required | integer The y coordinate of the top left corner of the rectangle |
bottom_right_x required | integer The x coordinate of the bottom right corner of the rectangle |
bottom_right_y required | integer The y coordinate of the bottom right corner of the rectangle |
Responses
Response samples
- 200
Content type
application/json
{- "texts": [
- "string"
]
}
Process an image and return the x, y coordinates of the processed part.
Request Body schema: application/x-www-form-urlencoded
image | string <binary> The image to process |
template | string <binary> The template image to match |
Responses
Response samples
- 200
Content type
application/json
{- "matches": [
- {
- "score": 0,
- "x": 0,
- "y": 0
}
]
}