<annotation>
	<folder></folder>
	<filename>{{filename}}</filename>
	<path>{{filename}}</path>
	<source>
		<database>roboflow.com</database>
	</source>
	<size>
		<width>{{width}}</width>
		<height>{{height}}</height>
		<depth>{{#if depth}}{{depth}}{{else}}3{{/if}}</depth>
	</size>
	<segmented>0</segmented>
    {{#each boxes}}
	<object>
		<name>{{label}}</name>
		<pose>Unspecified</pose>
		<truncated>0</truncated>
		<difficult>0</difficult>
		<occluded>0</occluded>
		<bndbox>
			<xmin>{{xmin}}</xmin>
			<xmax>{{xmax}}</xmax>
			<ymin>{{ymin}}</ymin>
			<ymax>{{ymax}}</ymax>
		</bndbox>
		{{#if points}}
		<polygon>
		{{#each points}}
			<x{{i}}>{{x}}</x{{i}}>
			<y{{i}}>{{y}}</y{{i}}>
		{{/each}}
		</polygon>
		{{/if}}
	</object>
    {{/each}}
	{{#if metadata}}
	<metadata>
		{{#if metadata.user_tags}}
		<tags>
		{{#each metadata.user_tags}}
			<tag>{{this}}</tag>
		{{/each}}
		</tags>
		{{/if}}
	</metadata>
	{{/if}}
</annotation>
