summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTomas Farago <sensej007@email.cz>2021-10-19 13:47:42 +0200
committerGitHub <noreply@github.com>2021-10-19 13:47:42 +0200
commit09edcabf491d5b44087f5f6add5c7109184a0216 (patch)
tree596c22f743c2f03b1c9cfb66731f5555b9f3256c /docs
parent9069d2a60fe1e02f9eac4b76ef9f1181905d7d49 (diff)
parente206e402a1671b03238018601484c22bae0b9ef7 (diff)
downloadufo-filters-09edcabf491d5b44087f5f6add5c7109184a0216.tar.gz
ufo-filters-09edcabf491d5b44087f5f6add5c7109184a0216.tar.bz2
ufo-filters-09edcabf491d5b44087f5f6add5c7109184a0216.tar.xz
ufo-filters-09edcabf491d5b44087f5f6add5c7109184a0216.zip
Merge pull request #214 from harishkumar-harihara/add-stacked-backproject
add stacked-backproject
Diffstat (limited to 'docs')
-rw-r--r--docs/filters.rst61
1 files changed, 61 insertions, 0 deletions
diff --git a/docs/filters.rst b/docs/filters.rst
index f2b32ec..bbdc335 100644
--- a/docs/filters.rst
+++ b/docs/filters.rst
@@ -1096,6 +1096,67 @@ Tomographic backprojection
Height of the region of interest. The default value of 0 denotes full
height.
+Tomographic Stacked backprojection
+----------------------------------
+
+.. gobj:class:: stacked-backproject
+
+ Computes the backprojection of multiple sinograms in parallel.
+ Stream multiple sinograms by introducing a stack filter of certain size
+ before this filter.
+ A suitable minimum stack size must be specified based on precision mode
+
+ 1. single - 2
+ 2. half - 4
+ 3. int8 - 4
+
+ .. gobj:prop:: num-projections:uint
+
+ Number of projections between 0 and 180 degrees
+
+ .. gobj:prop:: offset:uint
+
+ Offset to the first projection.
+
+ .. gobj:prop:: axis-pos:double
+
+ Position of the rotation axis in horizontal pixel dimension of a
+ sinogram or projection. If not given, the center of the sinogram is
+ assumed.
+
+ .. gobj:prop:: angle-step:double
+
+ Angle step increment in radians. If not given, pi divided by height
+ of input sinogram is assumed.
+
+ .. gobj:prop:: angle-offset:double
+
+ Constant angle offset in radians. This determines effectively the
+ starting angle.
+
+ .. gobj:prop:: roi-x:uint
+
+ Horizontal coordinate of the start of the ROI. By default 0.
+
+ .. gobj:prop:: roi-y:uint
+
+ Vertical coordinate of the start of the ROI. By default 0.
+
+ .. gobj:prop:: roi-width:uint
+
+ Width of the region of interest. The default value of 0 denotes full
+ width.
+
+ .. gobj:prop:: roi-height:uint
+
+ Height of the region of interest. The default value of 0 denotes full
+ height.
+
+ .. gobj:prop:: precision-mode:enum
+
+ Precision mode or storage format which can be ``single`` or ``half``
+ or ``int8``
+ Correspondingly it represents storage in 32, 16 and 8-bits.
Forward projection
------------------