Image Upload
Use this API to upload a photoset to the KIRI Engine server and obtain the serial number of the model. This serial number is unique to this project.
To ensure consistency in the 3D models, please upload at least 20 images but no more than 300 images. If you need to upload more, please contact us.
Request
curl --location --request POST 'https://api.kiriengine.app/api/v1/oepn/featureless/image' \
--header 'Authorization: Bearer ${YOUR_API_KEY}'\
--form 'fileFormat="OBJ"' \
--form 'imagesFiles=@""'
Response
{
"code": 0,
"msg": "string",
"data": {
"serialize": "796a6f52457844b4918db3eadd64becc",
"calculateType":2
},
"ok": true
}
Attributes
properties | type | description |
---|---|---|
imagesFiles | Array | Image files |
serialize | String | Unique identifier for the task |
calculateType | Integer | 1: Photo Scan, 2: Featureless Object Scan, 3: 3DGS Scan |
fileFormat | String | Generated model format (obj, fbx, stl, ply, glb, gltf, usdz, xyz) |