2022-10-11 13:46:53 -07:00
|
|
|
{% extends "base.jinja2" %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<table class="img-table">
|
|
|
|
<tr>
|
|
|
|
<th class="img-table-heading">Input Image</th>
|
2022-10-16 15:46:26 -07:00
|
|
|
<th class="img-table-heading">Output Heatmap</th>
|
2022-10-11 13:46:53 -07:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
{# Original image #}
|
2022-10-11 16:03:00 -07:00
|
|
|
<td class="img-table-cell" id="orig-cell">
|
2022-10-12 12:27:52 -07:00
|
|
|
<img class="img-out" src="data:image/png;base64,{{ img_orig_b64 }}" alt="original image">
|
2022-10-11 13:46:53 -07:00
|
|
|
</td>
|
|
|
|
{# Result image #}
|
2022-10-11 16:03:00 -07:00
|
|
|
<td class="img-table-cell" id="res-cell">
|
2022-10-12 12:27:52 -07:00
|
|
|
<img class="img-out" src="data:image/png;base64,{{ img_res_b64 }}" alt="result image">
|
2022-10-11 13:46:53 -07:00
|
|
|
</td>
|
|
|
|
</tr>
|
2022-10-11 16:03:00 -07:00
|
|
|
{# Legend #}
|
2022-10-11 13:46:53 -07:00
|
|
|
<tr>
|
2022-10-11 16:03:00 -07:00
|
|
|
<td class="img-table-cell"></td>
|
|
|
|
<td class="img-table-cell">
|
|
|
|
<table class="legend" id="legend">
|
|
|
|
<tr>
|
2022-10-12 17:37:31 -07:00
|
|
|
<th class="legend-heading">Color</th>
|
|
|
|
<th class="legend-heading">Temperature</th>
|
2022-10-11 16:03:00 -07:00
|
|
|
</tr>
|
|
|
|
{% for temp, color in legend.items() %}
|
|
|
|
<tr>
|
2022-10-12 17:37:31 -07:00
|
|
|
<td class="legend-cell"><div style="width:30px;height:20px;background-color:{{ color }};"></div></td>
|
2022-10-11 16:03:00 -07:00
|
|
|
<td class="legend-cell">{{ temp }}°C</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</td>
|
2022-10-11 13:46:53 -07:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.img-table-heading {
|
|
|
|
padding: 4px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img-table-cell {
|
2022-10-11 16:03:00 -07:00
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img-out {
|
|
|
|
width: 32rem;
|
2022-10-11 13:46:53 -07:00
|
|
|
}
|
|
|
|
|
2022-10-12 17:37:31 -07:00
|
|
|
.legend {
|
|
|
|
border-spacing: 0px;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.legend-heading {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2022-10-11 13:46:53 -07:00
|
|
|
.legend-cell {
|
2022-10-12 17:37:31 -07:00
|
|
|
border-width: 0px;
|
|
|
|
padding: 0px 20px;
|
2022-10-11 13:46:53 -07:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
{% endblock %}
|