{% extends "challenge.html" %} {% load grandchallenge_tags %} {% load workstations %} {% block title %} Annotations - {{ block.super }} {% endblock %} {% block content %} {% if object.labels and not object.base.challenge.evaluation_config.submission_join_key %}

WARNING: You have uploaded labels but the join key is not set, please set it in challenge evaluation settings. The existing keys are {{ object.labels.0.keys }}.

{% endif %}

Annotations

Add images to this annotation set Set the labels on this annotation set Update the images used in this annotation set

Kind
{{ object.get_kind_display }}
Dataset
{{ object.base }}
Upload Sessions
{% for upload_session in object.rawimageuploadsession_set.all %} {{ upload_session }}
{% endfor %}

Matched Annotations

{% for match in object.matched_images %} {% endfor %}
Key Base Image Annotation Image
{{ match.key }} {{ match.base }} {{ match.annotation }}
{% if object.missing_annotations|length > 0 %}

Missing Annotations

WARNING: The following images in the dataset are missing annotations. Please upload the annotations with the correct key.

{% for missing in object.missing_annotations %} {% endfor %}
Key Base Image
{{ missing.key }} {{ missing.base }}
{% endif %} {% if object.extra_annotations|length > 0 %}

Extra Annotations

WARNING: The following annotations could not be matched with a base image. Please remove these images from the annotation set.

{% for extra in object.extra_annotations %} {% endfor %}
Key Annotation Image
{{ extra.key }} {{ extra.annotation }}
{% endif %}

Matched Labels

{% for match in object.matched_labels %} {% endfor %}
Key Base Image Label
{{ match.key }} {{ match.base }} <{{ match.label }}
{% if object.missing_labels|length > 0 %}

Missing Labels

WARNING: The following images in the dataset are missing labels. Please upload the labels with the correct key.

{% for missing in object.missing_labels %} {% endfor %}
Key Base Image
{{ missing.key }} {{ missing.base }}
{% endif %} {% if object.extra_labels|length > 0 %}

Extra Labels

WARNING: The following labels could not be matched with a base image. Please upload a new set of labels.

{% for extra in object.extra_labels %} {% endfor %}
Key Label
{{ extra.key }} {{ extra.label }}
{% endif %} {% endblock %} {% block script %} {{ block.super }} {% endblock %}