├── whats_the_point ├── pascal_images │ ├── 2010_003526.jpg │ ├── 2010_004385.jpg │ ├── 2010_005016.jpg │ ├── 2011_000068.jpg │ └── 2011_000269.jpg ├── timer.js ├── sample_input.js ├── draw_box_instructions.html ├── point_task_once.js ├── point_task.js ├── draw_box_task.js ├── utils.js ├── carosel.js ├── point-drawer.js ├── point-drawer-once.js ├── all_actions.html └── bbox-drawer.js ├── best_of_both_worlds ├── examples │ ├── ILSVRC2012_val_00000379.JPEG │ ├── ILSVRC2012_val_00000694.JPEG │ ├── ILSVRC2012_val_00001937.JPEG │ ├── ILSVRC2012_val_00002315.JPEG │ ├── ILSVRC2012_val_00002773.JPEG │ ├── bad_ILSVRC2012_val_00000006.JPEG │ ├── bad_ILSVRC2012_val_00000018.JPEG │ ├── bad_ILSVRC2012_val_00000115.JPEG │ ├── bad_ILSVRC2012_val_00000379.JPEG │ ├── bad_ILSVRC2012_val_00000694.JPEG │ ├── bad_ILSVRC2012_val_00001929.JPEG │ ├── bad_ILSVRC2012_val_00001937.JPEG │ ├── bad_ILSVRC2012_val_00002315.JPEG │ ├── bad_ILSVRC2012_val_00002656.JPEG │ ├── bad_ILSVRC2012_val_00002773.JPEG │ ├── bad_ILSVRC2012_val_00002988.JPEG │ ├── good_ILSVRC2012_val_00000350.JPEG │ ├── good_ILSVRC2012_val_00000379.JPEG │ ├── good_ILSVRC2012_val_00000694.JPEG │ ├── good_ILSVRC2012_val_00001937.JPEG │ ├── good_ILSVRC2012_val_00002315.JPEG │ ├── good_ILSVRC2012_val_00002773.JPEG │ ├── good_ILSVRC2012_val_00002988.JPEG │ ├── OK_53_ILSVRC2012_val_00000115.JPEG │ ├── OK_53_ILSVRC2012_val_00000643.JPEG │ ├── OK_55_ILSVRC2012_val_00000668.JPEG │ ├── OK_57_ILSVRC2012_val_00000147.JPEG │ ├── OK_65_ILSVRC2012_val_00000350.JPEG │ ├── OK_66_ILSVRC2012_val_00000141.JPEG │ ├── OK_66_ILSVRC2012_val_00000174.JPEG │ ├── OK_70_ILSVRC2012_val_00000057.JPEG │ ├── OK_70_ILSVRC2012_val_00000203.JPEG │ ├── OK_71_ILSVRC2012_val_00000748.JPEG │ ├── OK_72_ILSVRC2012_val_00000643.JPEG │ ├── OK_72_ILSVRC2012_val_00000719.JPEG │ ├── OK_73_ILSVRC2012_val_00000694.JPEG │ ├── OK_74_ILSVRC2012_val_00000668.JPEG │ ├── OK_74_ILSVRC2012_val_00000696.JPEG │ ├── bad_32_ILSVRC2012_val_00001286.JPEG │ ├── bad_33_ILSVRC2012_val_00001624.JPEG │ ├── bad_37_ILSVRC2012_val_00001550.JPEG │ ├── bad_39_ILSVRC2012_val_00001297.JPEG │ ├── bad_39_ILSVRC2012_val_00001957.JPEG │ └── bad_40_ILSVRC2012_val_00001686.JPEG ├── verify_box_instructions.html ├── verify_object_instructions.html ├── verify_cover_instructions.html ├── verify_image_instructions.js ├── verify_image_instructions.html ├── timer.js ├── write_class_instructions.html ├── write_name_instructions.html ├── draw_box_instructions.html ├── verify_image_task.js ├── task_header.js ├── verify_object_task.js ├── verify_box_task.js ├── verify_cover_task.js ├── write_name_task.js ├── sample_input.js ├── write_class_task.js ├── binary_input.js ├── draw_box_task.js ├── utils.js ├── text_input.js ├── instructions.html ├── carosel.js ├── all_actions.html ├── bbox-drawer.js └── verify_tags.html ├── LICENSE └── README.md /whats_the_point/pascal_images/2010_003526.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/whats_the_point/pascal_images/2010_003526.jpg -------------------------------------------------------------------------------- /whats_the_point/pascal_images/2010_004385.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/whats_the_point/pascal_images/2010_004385.jpg -------------------------------------------------------------------------------- /whats_the_point/pascal_images/2010_005016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/whats_the_point/pascal_images/2010_005016.jpg -------------------------------------------------------------------------------- /whats_the_point/pascal_images/2011_000068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/whats_the_point/pascal_images/2011_000068.jpg -------------------------------------------------------------------------------- /whats_the_point/pascal_images/2011_000269.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/whats_the_point/pascal_images/2011_000269.jpg -------------------------------------------------------------------------------- /best_of_both_worlds/examples/ILSVRC2012_val_00000379.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/ILSVRC2012_val_00000379.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/ILSVRC2012_val_00000694.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/ILSVRC2012_val_00000694.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/ILSVRC2012_val_00001937.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/ILSVRC2012_val_00001937.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/ILSVRC2012_val_00002315.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/ILSVRC2012_val_00002315.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/ILSVRC2012_val_00002773.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/ILSVRC2012_val_00002773.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00000006.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00000006.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00000018.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00000018.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00000115.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00000115.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00000379.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00000379.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00000694.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00000694.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00001929.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00001929.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00001937.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00001937.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00002315.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00002315.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00002656.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00002656.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00002773.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00002773.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_ILSVRC2012_val_00002988.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_ILSVRC2012_val_00002988.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/good_ILSVRC2012_val_00000350.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/good_ILSVRC2012_val_00000350.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/good_ILSVRC2012_val_00000379.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/good_ILSVRC2012_val_00000379.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/good_ILSVRC2012_val_00000694.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/good_ILSVRC2012_val_00000694.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/good_ILSVRC2012_val_00001937.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/good_ILSVRC2012_val_00001937.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/good_ILSVRC2012_val_00002315.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/good_ILSVRC2012_val_00002315.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/good_ILSVRC2012_val_00002773.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/good_ILSVRC2012_val_00002773.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/good_ILSVRC2012_val_00002988.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/good_ILSVRC2012_val_00002988.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_53_ILSVRC2012_val_00000115.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_53_ILSVRC2012_val_00000115.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_53_ILSVRC2012_val_00000643.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_53_ILSVRC2012_val_00000643.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_55_ILSVRC2012_val_00000668.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_55_ILSVRC2012_val_00000668.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_57_ILSVRC2012_val_00000147.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_57_ILSVRC2012_val_00000147.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_65_ILSVRC2012_val_00000350.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_65_ILSVRC2012_val_00000350.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_66_ILSVRC2012_val_00000141.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_66_ILSVRC2012_val_00000141.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_66_ILSVRC2012_val_00000174.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_66_ILSVRC2012_val_00000174.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_70_ILSVRC2012_val_00000057.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_70_ILSVRC2012_val_00000057.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_70_ILSVRC2012_val_00000203.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_70_ILSVRC2012_val_00000203.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_71_ILSVRC2012_val_00000748.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_71_ILSVRC2012_val_00000748.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_72_ILSVRC2012_val_00000643.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_72_ILSVRC2012_val_00000643.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_72_ILSVRC2012_val_00000719.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_72_ILSVRC2012_val_00000719.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_73_ILSVRC2012_val_00000694.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_73_ILSVRC2012_val_00000694.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_74_ILSVRC2012_val_00000668.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_74_ILSVRC2012_val_00000668.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/OK_74_ILSVRC2012_val_00000696.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/OK_74_ILSVRC2012_val_00000696.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_32_ILSVRC2012_val_00001286.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_32_ILSVRC2012_val_00001286.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_33_ILSVRC2012_val_00001624.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_33_ILSVRC2012_val_00001624.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_37_ILSVRC2012_val_00001550.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_37_ILSVRC2012_val_00001550.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_39_ILSVRC2012_val_00001297.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_39_ILSVRC2012_val_00001297.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_39_ILSVRC2012_val_00001957.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_39_ILSVRC2012_val_00001957.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/examples/bad_40_ILSVRC2012_val_00001686.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orussakovsky/annotation-UIs/HEAD/best_of_both_worlds/examples/bad_40_ILSVRC2012_val_00001686.JPEG -------------------------------------------------------------------------------- /best_of_both_worlds/verify_box_instructions.html: -------------------------------------------------------------------------------- 1 |
Please decide if the provided box is a good bounding box around a single instance of the specified object. 2 | See the examples below to learn what is considered a good bounding box.
3 | 4 | -------------------------------------------------------------------------------- /best_of_both_worlds/verify_object_instructions.html: -------------------------------------------------------------------------------- 1 |Please decide if the provided box is a good bounding box around a single instance of some object (for example, it is a good bounding box around one cat, or one person, or one screwdriver, or one instance of any other object). 2 | See the examples below to learn what is considered a good bounding box.
3 | 4 | -------------------------------------------------------------------------------- /best_of_both_worlds/verify_cover_instructions.html: -------------------------------------------------------------------------------- 1 | Please check if there is a good blue bounding box around every instance of the specified object. 2 |First, please see the examples below to learn what is considered a good bounding box around an object.
2 |If the blue box is good, please type in the name of the object within it:
6 |Please draw a tight bounding box around one new instance of the specified object class. See the examples below to learn what is considered a good bounding box.
2 | 3 |If there are yellow boxes on the image:
4 |Click the 'Click here if no box can be drawn' button if:
11 |Please draw a tight bounding box around one new instance of the specified object class. See the examples below to learn what is considered a good bounding box.
2 | 3 |If there are yellow boxes on the image:
4 |Click the 'Click here if no box can be drawn' button if:
11 |