Convert to Pascal VOC
The Pascal VOC (Visual Object Classes) format stands as one of the benchmarks established relatively early for object classification, segmentation and detection. It furnishes a standardized dataset for identifying object classes, utilizing an XML-based export format that enjoys widespread adoption in computer vision tasks.
For more information on how to import Pascal VOC format data into Supervisely, see the Import from PascalVOC guide.
Converting data using Supervisely Ecosystem Apps
Export to Pascal VOC. Converts Supervisely format project to Pascal VOC and prepares downloadable
.tar
archive.
Converting data using Supervisely Python SDK
Easily convert your data in one line of code using the Supervisely Python SDK.
sly.convert.to_pascal_voc()
function automatically detects the input data type and converts it to Pascal VOC format. For example, you can pass a path to a project, sly.Project object or sly.Dataset object. To convert a Dataset, you need to provide the project meta information as shown in the example below.
This converter allows you to convert a Project or Dataset. Each dataset in the project will be converted to a separate Pascal VOC dataset.
Convert a project to Pascal VOC format:
Convert a specific dataset to Pascal VOC format:
Last updated
Was this helpful?