Menu

이미지에서 객체 좌표 얻기

이미지 본문과 영어로 된 코멘트를 게시하고 지정된 개체의 좌표를 최대 6세트까지 받을 수 있습니다. 사각형 좌표뿐만 아니라 점 좌표도 요청할 수 있습니다. 한 면의 최대 이미지 크기는 500픽셀이며, 이보다 큰 이미지는 작업자 인터페이스에서 축소됩니다.

Image-to-Coordinates captcha example, select objects on the picture
Image-to-Coordinates captcha example, draw a rectangle above objects
"points" 및 "rectangles" 작업 예제

작업 객체

속성유형필수목적
type문자열ImageToCoordinatesTask
작업 유형을 정의하세요.
body문자열base64로 인코딩된 파일 본문. 줄 바꿈 없이 전송하여야 합니다. 'data:image/png,' 혹은 이와 유사한 태그는 포함하지 말고, 순수하게 base64만 사용하시기 바랍니다!
comment문자열아니요영어 문자만 포함된 작업에 대한 코멘트. 예제: "Select objects in specified order" 또는 "select all cars".
mode문자열아니요작업 모드는 "points" 또는 "rectangles"에 해당하며, 기본값은 "points"입니다.
websiteURL문자열아니요지출 통계에서 이미지 CAPTCHA의 출처를 구분하기 위한 선택적 매개변수

예제 요청

Python
Javascript
Go
PHP
bash
#pip3 install anticaptchaofficial

from anticaptchaofficial.imagetocoordinates import *

solver = imagetocoordinates()
solver.set_verbose(1)
solver.set_key("YOUR_KEY")
solver.set_mode("points")
solver.set_comment("Select objects in specified order")

coordinates = solver.solve_and_return_solution("coordinates.png")
if coordinates != 0:
    print("coordinates: ", coordinates)
else:
    print("task finished with error "+solver.error_code)

작업 솔루션 객체

속성유형목적
coordinates문자열좌표 집합의 배열. "points" 모드의 경우 (x,y) 집합입니다. "rectangles"의 경우, 왼쪽 상단에서 시작하여 오른쪽 하단 방향으로 (x1,y1,x2,y2)입니다. 좌표 시작점은 왼쪽 상단 모서리입니다.

응답 예제

{
    "errorId":0,
    "status":"ready",
    "solution":
    {
      "coordinates":[
        [17,48,54,83],
        [76,93,140,164]
      ]
    },
    "cost":"0.000700",
    "ip":"46.98.54.221",
    "createTime":1472205564,
    "endTime":1472205570,
    "solveCount":"0"
}