diff options
author | Your Name <you@example.com> | 2021-05-14 11:40:31 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-14 11:40:31 -0400 |
commit | 8c884838ced928d29a8436be8b2808766c5a1e53 (patch) | |
tree | f51869c128592a9d00f873f73a08df8ada49679c /readme.md | |
parent | 5a6248518654ec97d95d2c463e3ffb4be7bbf456 (diff) | |
download | annotator-8c884838ced928d29a8436be8b2808766c5a1e53.tar.gz annotator-8c884838ced928d29a8436be8b2808766c5a1e53.tar.bz2 annotator-8c884838ced928d29a8436be8b2808766c5a1e53.zip |
Changed extension from .txt to .csv
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..9069fc8 --- /dev/null +++ b/readme.md @@ -0,0 +1,34 @@ +# Annotator + +This is a simple tool for annotating (short) videos. It is designed to facilitate frame-level annotations, at the expense of having to load the entire video into memory. Future versions may relax this requirement. + +## Building + +Requirements are: + + * libconfuse (for parsing config file) + * opencv (for video playback) + +Compile by running: + +```console +./configure +make +``` + +## Usage + +Available labels are configured in `annotator.conf`. Controls are as follows: + + * Number keys: Make annotation + * Escape: Quit (doesn't save) + * Space: Pause + * Left arrow: Go backward 1 frame + * Right arrow: Go forward 1 frame + * Up arrow: Seek backard 1 second + * Down arrow: Seek forward 1 second + * u: Undo (WIP) + * r: Redo (WIP) + * Delete: Remove closest annotation to current frame + * s: Save (there is no autosave) + |