POST /vi/v1/jobs
[Request]
Key | Type | Required | Description |
---|---|---|---|
inputUris[ ] | String | Required | 입력 URI 특정 VI의 경우 복수개의 입력이 필요할 수도 있음 |
jobType | String | Required | VI 타입 (People Counting, Face Recognition, …) |
jobParams[ ] | String | Optional | VI 타입에 따른 설정 파라메터 |
inputContentsInfo[ ] | String | Optional | 각 입력에 대한 추가정보 표기 |
Request Example
Code Block |
---|
{
"inputUris": [ "rtsp://98.210.72.185", "rtsp://98.210.72.186" ],
"jobType": "PeopleCounting",
"jobParams": [ "param0", "param1" ],
"inputContentsInfo": [ "video", "thermalVideo"]
} |
[Response]
Key | Type | Description |
---|---|---|
jobId | String | Job을 유일하게 구분할 수 있는 ID |
outputUris[ ] | String | 출력 데이터에 접근할 수 있는 URI VI 타입에 따라 여러 개의 URI를 반환할 수 있음 |