Skip to main content

IMAGE API (1.0.0)

Download OpenAPI specification:Download

이미지 처리하는 API

Extract texts inside a rectangle from an image

Request Body schema: application/x-www-form-urlencoded
required
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

Content type
application/json
{
  • "texts": [
    ]
}

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

Content type
application/json
{
  • "matches": [
    ]
}