From 56b36d1fa80e77d4ab0158a4b7f98394d544b7b5 Mon Sep 17 00:00:00 2001 From: Andrew Herzing Date: Tue, 18 Jun 2024 15:28:43 -0400 Subject: [PATCH] Added plot_sinos method to TomoStack --- tomotools/base.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tomotools/base.py b/tomotools/base.py index f3f9f2ba..3c2b9e54 100644 --- a/tomotools/base.py +++ b/tomotools/base.py @@ -326,6 +326,14 @@ class TomoStack(CommonStack): CommonStack class """ + def plot_sinos(self): + """ + Plot the TomoStack in sinogram orientation + + """ + self.swap_axes(1, 0).swap_axes(1, 2).plot() + return + def remove_projections(self, projections=None): """ Remove projections from tilt series.