GitXplorerGitXplorer
j

zippy

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
c2ccf17edf27c40c1447fdccbd6cdfdb94850614

Add initial version of zippy

jjmargeta committed 5 years ago
Verified
724ba8fd715d7e0043fa91e8a15201d16a9d92b1

Initial commit

jjmargeta committed 5 years ago

README

The README file for this repository.

Zippy

Zippy is a simple, lightweight, and quick image annotation tool for creation of image classification groundtruth. It is built using feh - the fenomenal image viewer and cataloguer.

The decisions to take are assign label 1, 2 or skip until all images are exhausted or program is quit manually.

Installation

  • install feh
  • copy zippy somewhere into the PATH

Usage

Run Zippy as:

zippy path_to_images

Zippy will traverse the path recursively, randomize the image order.

Outputs

Labels.txt

full paths and assigned labels

Example:

/data/eagle.jpg,1
/data/dog.jpg,2
/data/colibri.png,1
/data/albatros.jpg,1
/data/camel.jpg,2
/data/deer.png,2
…

skipped.txt

full paths to skipped files

Examples

/data/trout.png
/data/sardine.jpg

Keyboard shortcuts

  • Enter - skips the image and adds to skipped.txt
  • 1 - assigns label 1 and adds the record to labels.txt
  • 2 - assigns label 2 and adds the record to labels.txt
  • q - quit zippy
  • see feh's manual for the rest

PRs welcome

  • resume
  • input labels as arguments
  • active training loop
  • allow label correction