
OCR(Optical Character Recognition) 운전면허증 사진에서 주요 정보를 텍스트로 추출합니다.
curl -k -X POST "https://apick.app/rest/ocr_identi2" \
-H "CL_AUTH_KEY: $API_KEY" \
-F "image=@/C:/Users/user/Desktop/sample_idcard.png"
{
"data": {
"result": {
"name": "홍길동",
"birth_y": "2000",
"birth_m": "01",
"birth_d": "01",
"rrn1": "000101",
"rrn2": "1234567",
"licen_no0": "21",
"licen_no1": "19",
"licen_no2": "174133",
"licen_no3": "01",
"ghost_num": "8H1X3Y"
},
"success": 1
},
"api": {
"success": true,
"cost": 8,
"ms": 729,
"pl_id": 329
}
}