• Stars
    star
    220
  • Rank 179,362 (Top 4 %)
  • Language
    Python
  • License
    MIT License
  • Created over 6 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A python library for generating annotations in the PASCAL VOC format.

PASCAL VOC Writer

This library can be used to create image annotation XML files in the PASCAL VOC file format.

Install

pip install pascal-voc-writer

Use

from pascal_voc_writer import Writer

# Writer(path, width, height)

writer = Writer('path/to/img.jpg', 800, 400)

# ::addObject(name, xmin, ymin, xmax, ymax)

writer.addObject('cat', 100, 100, 200, 200)

# ::save(path)

writer.save('path/to/img.xml')

More Repositories

1

football-predictor

Using a Deep Neural Network (DNN) to predict the results of Premier League Football Matches
Python
206
star
2

mnist-neural-network-plain-c

A neural network implementation for the MNIST dataset, written in plain C
C
85
star
3

PHPSnake

Multi-Player PHP Snake Game
PHP
71
star
4

mnist-neural-network-plain-php

A neural network implementation for the MNIST dataset, written in plain PHP
PHP
67
star
5

CryptoKey

A tool for generating keys using a CSPRNG.
PHP
60
star
6

tf-example-object-detection-api-race-cars

This repository holds the example project that demonstrates how the TensorFlow Object Detection API can be used to predict annotations for large datasets.
Python
42
star
7

TypedArrays

Typed arrays in PHP
PHP
39
star
8

NoMoreLeaksBundle

A Symfony bundle that kills memory leaks using lasers and ninja stars.
PHP
21
star
9

AstroSplash

An app that uses the Astronomy Picture of the Day API provided by NASA and the Zend Expressive framework.
PHP
21
star
10

SimpleRoute

This simple router is a wrapper for FastRoute.
PHP
17
star
11

SlackMotivation

A chrome extension for less painful Slack motivation messages.
JavaScript
6
star
12

Blackjack

A C library that can be used to perform probability simulations on the outcome from standing or hitting in Blackjack.
C
6
star
13

LightstreamerCpp

A C++ client library for the Lightstreamer protocol that uses Boost.Beast
C++
4
star
14

teeny

A teeny tiny web application framework in C
C
4
star
15

mqtt-cli-subscriber

Subscribe to MQTT messages with command line programs.
Python
3
star
16

astronomy-picture-of-the-day

A wrapper for the Astronomy Picture of the Day API provided by NASA.
PHP
3
star
17

tf-example-sharks

Python
2
star
18

DrinkingBuddy

HTML
1
star
19

node-red-api

Support for the Node-RED API.
PHP
1
star
20

andrewcarteruk.github.io

Personal blog.
JavaScript
1
star
21

packagist-authors

The authors of packages on Packagist.
1
star
22

Needlephobe

A Google Chrome extension that hides images of needles.
Python
1
star