{% extends 'base.html' %} {% load static %} {% block title %}Results — Constellar{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Analysis Complete

Detection Results

{% if analysis_type == 'constellation' %} Your night sky image has been analyzed for constellation patterns. {% else %} Objects detected in your image. {% endif %}

{% if original_image %}
Detection result
Original image
Original Detected

Drag the slider to compare your original photo with the detection result

{% else %} Processed constellation image {% endif %}
{% if detected_constellations %}

Detected

{{ detected_constellations|length }} Constellation{{ detected_constellations|length|pluralize }} Found

{% for constellation in detected_constellations %}

{{ constellation.name }}

{{ constellation.confidence|floatformat:2 }}
X {{ constellation.coordinates.0|floatformat:0 }}–{{ constellation.coordinates.2|floatformat:0 }} Y {{ constellation.coordinates.1|floatformat:0 }}–{{ constellation.coordinates.3|floatformat:0 }}
{% endfor %}
{% else %}

No constellations detected

Try a clearer night sky image with visible star patterns.

{% endif %}

What's next?

Analyze Another Image Live Detection Browse Database
{% endblock %} {% block extra_js %} {% endblock %}