• Stars
    star
    156
  • Rank 239,589 (Top 5 %)
  • Language
    C++
  • License
    MIT License
  • Created about 4 years ago
  • Updated over 1 year ago

Reviews

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

Repository Details

A label tool aim to reduce semantic segmentation label time, rectangle and polygon annotation is supported

AutoAnnotationTool

A label tool enable to do image annotation for rectangle and generate polygon annotation automatically

Environment

Compiler:

Win 10 Ubuntu 20.04
Visual studio 2022 GCC 9.4

Third Party:

Package Version
Qt 5.14.2
OpenCV 3.4.15

How to use (for Ubuntu)

  • Download AutoAnnotationInstaller.run from release package
  • Follow the Instructions to install
  • Open terminal and change directory to installation folder
  • Execute the followng command
$ ./AppRun

How to build

  1. Clone this project with submodule

    git clone https://github.com/andywang0607/AutoAnnotationTool.git --recursive
    or 
    git clone [email protected]:andywang0607/AutoAnnotationTool.git --recursive
    
  2. Build this project

    • Open QtCreator
    • Click build button

Description

AutoAnnotationTool is a graphical image annotation tool, I start this project for saving my time spent on semantic segmentation label. For now, the feature list below have been implement and more function will be added continuously. It is written in c++ and Qt for its graphical interface, and this project is inspired by https://github.com/wkentaro/labelme

Feature

  • Rectangle annotation
    • Modify rectangle by simply drag the coner or edge of it is supported
  • Polygon annotation
    • Generate a polygon annotation with just one click on a rectangle ROI
    • Modify the generated polygon by dragging it is supported
  • Edit Label
  • Save and load rectangle and polygon annotation data according to the labelme json format

Execute Execute
Execute Execute

ShortCut

  • A: Last image
  • D: Next image
  • S: Save
  • Space: Open label list

Description to setting parameter

  • Iteration: Number of iterations the algorithm should run.(default = 4)
  • Epsilon: Input for OpenCV approxPolyDP () function (default = 1) detail Execute

How to contribute

  • I am open to any suggestions.
  • For questions, you can create an issue
  • Send pull requests for code changes