Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
    * video from share hotfix & dump hotfix
    * Added contributors
    * Added screenshot, documentation, screencasts into README.md
    * Fixed GitHub documentation
  • Loading branch information
Nikita Manovich committed Jul 6, 2018
1 parent eb9fba3 commit e8b2c40
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 74 deletions.
22 changes: 22 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Core support team
- **[Nikita Manovich](https://github.com/nmanovic)**

* Project lead
* Developer
* Author and maintainer

- **[Boris Sekachev](https://github.com/bsekachev)**

* Primary developer
* Author and maintainer

- **[Andrey Zhavoronkov]()**

* Developer
* Author and maintainer

# Contributors

- **[Victor Salimonov](https://github.com/VikTorSalimonov)**

* Documentation, screencasts
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

CVAT is completely re-designed and re-implemented version of [Video Annotation Tool from Irvine, California](http://carlvondrick.com/vatic/) tool. It is free, online, interactive video and image annotation tool for computer vision. It is being used by our team to annotate million of objects with different properties. Many UI and UX decisions are based on feedbacks from professional data annotation team.

![CVAT screenshot](cvat/apps/documentation/static/documentation/images/gif003.gif)

## Documentation

- [User's guide](cvat/apps/documentation/user_guide.md)
- [XML annotation format](cvat/apps/documentation/xml_format.md)

## Screencasts

- [Annotation mode](https://www.youtube.com/watch?v=uSqaQENdyJE)
- [Interpolation mode](https://www.youtube.com/watch?v=sc5X5hvxNfA)
- [Attribute mode](https://www.youtube.com/watch?v=5yXaG0V7X0Q)

## LICENSE

Code released under the [MIT License](https://opensource.org/licenses/MIT).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
var converter = new showdown.Converter({extensions: ['toc']});
converter.setFlavor('github');
var user_guide = document.getElementById("content").innerHTML;
// For GitHub documentation we need to have relative links without
// leading slash. Let's just add the leading slash here to have correct
// links inside online documentation.
user_guide = user_guide.replace(/!\[\]\(static/g, "![](/static")
document.body.innerHTML = converter.makeHtml(user_guide);
</script>
</body>
Loading

0 comments on commit e8b2c40

Please sign in to comment.