{% extends 'base/base.html' %} {% load i18n %} {% load static %} {% load widget_tweaks %} {% block taggerimports %} {% endblock taggerimports %} {% block additional_js %} {% verbatim %} {% endverbatim %} {% endblock additional_js %} {% block bodyblock %}
{% if images %}

Images

{% endif %}

{{imageset.name}} {{ imageset.prio_symbol | safe }}

{% if imageset.team %} {% endif %}
Name {{imageset.name}}
Team {{imageset.team.name}}
Location {{imageset.location}}
Description {{imageset.description}}
Image count {{imageset.image_count}}
Annotation count {{annotationcount}}
    {% for atc in annotation_type_count %}
  • {{ atc.0}}: {{ atc.1 }} ({{ atc.2 }}/{{ atc.3 }})
  • {% endfor %}
Download Download Script Image Download via
./imagetagger_dl_script.py {{ imageset.id }}
to current directory
{% if "edit_set" in imageset_perms %}

Imageset management

{% csrf_token %}
{% render_field edit_form.name class+='form-control' %}
{% render_field edit_form.location class+='form-control' %}
{% render_field edit_form.description class+='form-control' %}
{% render_field edit_form.public class+='form-control' %}
{% render_field edit_form.public_collaboration class+='form-control' %}
{% render_field edit_form.image_lock class+='form-control' %}
{% render_field edit_form.priority class+='form-control' %}
{% render_field edit_form.main_annotation_type class+='form-control' %}
{% if "delete_set" in imageset_perms %} Delete Set {% endif %} {% if "delete_set" in imageset_perms and images %} Set Free {% endif %}
{% if not imageset.image_lock %}

Upload new images:

{{ upload_notice|safe }}
 
Upload images as single files or as zip file with the images in its root directory (recommended).
{% csrf_token %}
Add files...
 
{% endif %}

Upload existing Labels

Here you can upload existing labels as a text file in the following format:
image name|annotation type|{'x1': x1,'y1': y1...}|flags
  with b as flag for blurred annotations and c for concealed ones.
Using the ImageTagger export tool for example:
Annotation format:
%%imagename|%%type|{%%vector}|%%ifblurredb%%endif%%ifconcealedc%%endif
  with vector format:
  "x%%count1": "%%x","y%%count1": "%%y"
or for negative annotations:
image name|annotation type|not in image
 
One annotation per line. The annotation type has to exist in the ImageTagger too.
{% csrf_token %} {{ label_upload_form }}
{% endif %}
{% if "annotate" in imageset_perms %} {% if first_annotation or "edit_set" in imageset_perms and all_annotation_types%}

Annotation management

    {% if first_annotation %}
  • Manage annotations
  • Verify annotations
  • {% endif %} {% if "edit_set" in imageset_perms and all_annotation_types %}
  • Annotate the whole set
  • {% endif %}
{% endif %} {% endif %}

Export tags to file

{% csrf_token %} {% comment %} {% for annotationtype in annotationtypes %}
  • {{annotationtype.name}}
  • {% endfor %} {% endcomment %} {% csrf_token %}
    {% if exports %}

    Download exports:

    {% for export in exports %}
  • {% if export.deprecated %}[dep] {% endif %}{% if export.format %}{{export.format.name}}{% else %}[deleted]{% endif %}: {{export.time|date:'j. N Y H:i:s'}}
  • {% endfor %} {% endif %}
    {% endblock bodyblock%}