Skip to content
Novus Examples
xml287 B

Detection Annotations — Warehouse Pascal VOC (XML)

Pascal VOC XML annotations for the warehouse detection scene.

Preview — first 7 linesxml
<annotation>
  <folder>vision</folder>
  <filename>warehouse-scene.png</filename>
  <size><width>320</width><height>240</height><depth>3</depth></size>
  <object><name>box</name><bndbox><xmin>40</xmin><ymin>80</ymin><xmax>100</xmax><ymax>130</ymax></bndbox></object>
</annotation>

Specifications

Format
Pascal VOC
Scene
warehouse

What is a .xml file?

XML (Extensible Markup Language) is a verbose, self-describing markup language using nested tags, attributes, and namespaces to represent structured, hierarchical data. It supports schemas, entities, and validation and underlies many document and data formats. It remains common in enterprise, publishing, and interchange contexts.

How to use this file

Use an example XML file to test parsers, namespace and schema validation, XPath queries, and protection against entity-expansion and external-entity attacks.

How to use this file for testing

“Detection Annotations — Warehouse Pascal VOC (XML)” is a deterministic Novus Examples fixture for Computer vision, ML training data, Conversion testing. A rendered detection scene annotated in COCO, YOLO, and Pascal-VOC formats — for testing annotation loaders, format converters, and vision pipelines against a known image.

Documented properties for this file: Pascal VOC. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

AI/ML fixtures are fully synthetic with documented schemas — no real people or data. Test data loaders, tokenizers, annotation converters, embedding/vector stores, or eval-metric parsers against the known structure and fixed seeds.

Code examples

import xml.etree.ElementTree as ET

tree = ET.parse("warehouse-voc.xml")
root = tree.getroot()
print(root.tag, [c.tag for c in root][:5])

Generated by generation/ai_wave_f.py. Free for any use, no attribution required — license.