summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTomas Farago <sensej007@email.cz>2020-03-20 16:37:12 +0100
committerTomas Farago <sensej007@email.cz>2020-03-20 16:37:12 +0100
commit54f98c09431faafd5fb952c291b6dfb2179d4229 (patch)
tree05701a67da9370c4051ff6e25e72d56999f0e7e8 /docs
parentb74bd263983a3dc1006ceceaf9552dc322ef8858 (diff)
downloadufo-filters-54f98c09431faafd5fb952c291b6dfb2179d4229.tar.gz
ufo-filters-54f98c09431faafd5fb952c291b6dfb2179d4229.tar.bz2
ufo-filters-54f98c09431faafd5fb952c291b6dfb2179d4229.tar.xz
ufo-filters-54f98c09431faafd5fb952c291b6dfb2179d4229.zip
Add sliding-stack task
fixes #196.
Diffstat (limited to 'docs')
-rw-r--r--docs/filters.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/filters.rst b/docs/filters.rst
index 0e571b9..76b16e7 100644
--- a/docs/filters.rst
+++ b/docs/filters.rst
@@ -758,6 +758,23 @@ Stacking
Number of items, i.e. the length of the third dimension.
+Stacking with sliding window
+----------------------------
+
+.. gobj:class:: sliding-stack
+
+ Stacks input images up to the specified :gobj:prop:`number` and then
+ replaces old images with incoming new ones as they come. The first image is
+ copied to all positions in the beginning. Images in the window are not
+ ordered, i.e. if e.g. :gobj:prop:`number` = 3, then the window will contain
+ the following input images: (0, 0, 0), (0, 1, 0), (0, 1, 2), (3, 1, 2), (3,
+ 4, 2), (3, 4, 5) and so on.
+
+ .. gobj:prop:: number:uint
+
+ Number of items, i.e. the length of the third dimension.
+
+
Merging
-------