We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14baf2f commit 3017407Copy full SHA for 3017407
README.md
@@ -305,6 +305,26 @@ Example when the project type is Image - Pose Estimation
305
}
306
```
307
308
+#### Export Image With Annotations
309
+
310
+Get tasks and export images with annotations.
311
+Only support the following image extension.
312
313
+- jpeg
314
+- jpg
315
+- png
316
+- tif
317
+- tiff
318
+- bmp
319
320
321
+```python
322
+tasks = client.get_image_tasks(project="YOUR_PROJECT_SLUG")
323
+client.export_image_with_annotations(
324
+ tasks=tasks, image_dir="IMAGE_DIR", output_dir="OUTPUT_DIR"
325
+)
326
+```
327
328
#### Integrate Task
329
330
This function is alpha version. It is subject to major changes in the future.
0 commit comments