├── .gitignore ├── LICENSE ├── README.md ├── bbox_annotator.coffee ├── demo.html ├── example.jpg └── mturk.html /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | bbox_annotator.js 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyamagu/bbox-annotator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyamagu/bbox-annotator/HEAD/README.md -------------------------------------------------------------------------------- /bbox_annotator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyamagu/bbox-annotator/HEAD/bbox_annotator.coffee -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyamagu/bbox-annotator/HEAD/demo.html -------------------------------------------------------------------------------- /example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyamagu/bbox-annotator/HEAD/example.jpg -------------------------------------------------------------------------------- /mturk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyamagu/bbox-annotator/HEAD/mturk.html --------------------------------------------------------------------------------