feat(optimization): Implement series optimization features including downsampling, empty DICOM removal, and reconstruction options

This commit is contained in:
Ross
2026-05-16 22:30:55 +01:00
parent 5ce337c7c4
commit b9cbfd20c1
6 changed files with 544 additions and 179 deletions
+5
View File
@@ -565,6 +565,11 @@ urlpatterns = [
views.series_image_size_htmx,
name="series_image_size",
),
path(
"series/<int:series_id>/optimize/",
views.series_optimize_htmx,
name="series_optimize",
),
path("series/<int:pk>/images/", views.series_images_partial, name="series_images"),
path("series/<int:pk>/authors", views.SeriesAuthorUpdate.as_view(), name="series_authors"),
path("series/<int:series_id>/finding/related", views.series_finding_related, name="series_finding_related"),