{% extends "base.html" %} {% load static %} {% block title %}Home{% endblock %} {% block meta_description %}Radiuma — A Powerful Workflow Generator for Standardized Radiomics Analysis and Medical Image Visualization.{% endblock %} {% block content %}
Developing since 2021

Radiuma,
A Powerful Workflow Generator

for Standardized Radiomics Analysis and Medical Image Visualization

Radiuma is a free, open-source software specialized for visualization, processing, segmentation, registration, fusion and analysis of medical and biomedical images, including radiomics and machine learning analysis.

Radiuma application — main workflow view
{% for section in homepage_sections %} {% if section.section_type == "features" %}
{% if section.badge %}
{{ section.badge }}
{% endif %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %}
{% for item in section.items.all %}
{% if item.icon %}{% endif %}

{{ item.title }}

{{ item.content }}

{% endfor %}
{% elif section.section_type == "screenshots" %}
{% if section.badge %}
{{ section.badge }}
{% endif %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %}
Radiuma full workflow interface
Radiuma panel view
Radiuma segmentation view
Radiuma radiomics results
{% elif section.section_type == "products" %} {% if sub_products %}
{% if section.badge %}
{{ section.badge }}
{% endif %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %}
{% endif %} {% elif section.section_type == "problems" %}
{% if section.badge %}
{{ section.badge }}
{% endif %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %}
{% for item in section.items.all %}
{% if item.icon %}{% endif %}

{{ item.title }}

{{ item.content }}

{% endfor %}
{% elif section.section_type == "supporters" %}
{% if section.badge %}
{{ section.badge }}
{% endif %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %}
{% for item in section.items.all %}
{% if item.image %} {% endif %}

{{ item.title }}

{% if item.content %}

{{ item.content }}

{% endif %}
{% endfor %}
{% elif section.section_type == "about_strip" %}
{% if section.badge %}
{{ section.badge }}
{% endif %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %} {% if section.link_text and section.link_url %} {{ section.link_text }} {% endif %}
{% endif %} {% endfor %} {% endblock %}