picture.html
HTML document, ASCII text
1
{% extends "default.html" %}
2
{% block title %}Picture | gigadata{% endblock %}
3
{% macro shape_label(x, y, text) %}
4
{% if text %}
5
<foreignObject height="100%" width="100%" x="{{ x * size[0] }}" y="{{ y * size[1] }}">
6
<div class="shape-label">
7
{{ text }}
8
</div>
9
</foreignObject>
10
{% endif %}
11
{% endmacro %}
12
{% block content %}
13
<x-frame style="--width: 768px">
14
<h1>{{ resource.title }}</h1>
15
<p>{{ resource.description }}</p>
16
<p>
17
<a href="{{ resource.origin_url }}">Original source</a> |
18
<a href="/raw/picture/{{ resource.id }}">View</a> |
19
<a href="/raw/picture/{{ resource.id }}" download="GigadataPicture_{{ resource.id }}{{ file_extension }}">Download</a> |
20
<a href="/picture/{{ resource.id }}/annotate">Annotate</a> |
21
<a href="/picture/{{ resource.id }}/put-annotations-form">Submit JSON annotations</a>
22
</p>
23
<div id="annotation-zone">
24
<img id="annotation-image" src="/raw/picture/{{ resource.id }}" alt="{{ resource.title }}">
25
{% for region in resource.regions %}
26
{% if region.json.type == "bbox" %}
27
<svg class="shape-container-viewonly" viewBox="0 0 {{ size[0] }} {{ size[1] }}">
28
<rect x="{{ region.json.shape.x * size[0] }}"
29
y="{{ region.json.shape.y * size[1] }}"
30
width="{{ region.json.shape.w * size[0] }}"
31
height="{{ region.json.shape.h * size[1] }}"
32
fill="none" class="shape-bbox shape"
33
></rect>
34
{% set centre_x = region.json.shape.x + region.json.shape.w / 2 %}
35
{% set centre_y = region.json.shape.y + region.json.shape.h / 2 %}
36
{{ shape_label(centre_x, centre_y, region.object_id) }}
37
</svg>
38
{% elif region.json.type == "polygon" %}
39
<svg class="shape-container-viewonly" viewBox="0 0 {{ size[0] }} {{ size[1] }}">
40
<polygon points="{% for point in region.json.shape %}{{ point.x * size[0] }},{{ point.y * size[1] }} {% endfor %}" fill="none" class="shape-polygon shape"></polygon>
41
{% set top = region.json.shape | sort(attribute='y') | last %}
42
{% set left = region.json.shape | sort(attribute='x') | first %}
43
{% set bottom = region.json.shape | sort(attribute='y') | first %}
44
{% set right = region.json.shape | sort(attribute='x') | last %}
45
{% set centre_x = (left.x + right.x) / 2 %}
46
{% set centre_y = (top.y + bottom.y) / 2 %}
47
{{ shape_label(centre_x, centre_y, region.object_id) }}
48
</svg>
49
{% elif region.json.type == "polyline" %}
50
<svg class="shape-container-viewonly" viewBox="0 0 {{ size[0] }} {{ size[1] }}">
51
<polyline points="{% for point in region.json.shape %}{{ point.x * size[0] }},{{ point.y * size[1] }} {% endfor %}" fill="none" class="shape-polyline shape"></polyline>
52
{# Median point #}
53
{% set centre_x = region.json.shape | map(attribute="x") | median %}
54
{% set centre_y = region.json.shape | map(attribute="y") | median %}
55
{{ shape_label(centre_x, centre_y, region.object_id) }}
56
</svg>
57
{% elif region.json.type == "point" %}
58
<svg class="shape-container-viewonly" viewBox="0 0 {{ size[0] }} {{ size[1] }}">
59
<circle cx="{{ region.json.shape.x * size[0] }}" cy="{{ region.json.shape.y * size[1] }}" r="0" fill="none" class="shape-point shape"></circle>
60
{{ shape_label(region.json.shape.x, region.json.shape.y, region.object_id) }}
61
</svg>
62
{% endif %}
63
{% endfor %}
64
</div>
65
<x-buttonbox>
66
<label>
67
<input type="checkbox" id="show-shapes" checked>
68
Show shapes
69
</label>
70
<label>
71
<input type="checkbox" id="show-objects" checked>
72
Show objects
73
</label>
74
</x-buttonbox>
75
{% set licences = resource.licences | map(attribute="licence") | list %}
76
{% set contains = resource.regions | map(attribute="object_id") | set | sort | select | list %}
77
<x-vbox>
78
<div class="icon-explainer">
79
<span>Type</span>
80
<span>{{ resource.nature.id }}</span>
81
<span>File format</span>
82
<span>{{ resource.file_format }}</span>
83
<span>Size</span>
84
<span>{{ size[0] }}×{{ size[1] }}</span>
85
<span>Number of regions</span>
86
<span>{{ resource.regions | length }}</span>
87
<span>Number of labelled regions</span>
88
<span>{{ resource.regions | selectattr("object_id") | list | length }}</span>
89
</div>
90
Contains objects: {{ contains | join(", ") }}
91
<x-hbox style="justify-content: space-between">
92
<small class="picture-licensing-info">
93
Available under:
94
{% for licence in licences %}
95
<a href="{{ licence.info_url }}" target="_blank">
96
{{ licence.title }}
97
</a>
98
{% if not loop.last %}, {% endif %}
99
{% endfor %}
100
</small>
101
<x-vbox class="picture-licence-logos">
102
{% for licence in licences %}
103
{% if licence.logo_url %}
104
{% if licence.info_url %}
105
<a href="{{ licence.info_url }}" target="_blank" tabindex="-1">
106
{# An equivalent link already exists, only one is focusable #}
107
<img src="{{ licence.logo_url }}" alt="{{ licence.title }}" class="licence-logo">
108
</a>
109
{% else %}
110
<img src="{{ licence.logo_url }}" alt="{{ licence.title }}" class="licence-logo">
111
{% endif %}
112
{% endif %}
113
{% endfor %}
114
</x-vbox>
115
</x-hbox>
116
</x-vbox>
117
</x-frame>
118
{% endblock %}