summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTomas Farago <sensej007@email.cz>2020-04-03 14:26:39 +0200
committerGitHub <noreply@github.com>2020-04-03 14:26:39 +0200
commited5cc04ac7240d2a27e95fd8d9bcce5401d03c39 (patch)
treeed2759259a2b74c61addf5a83764871dd9c779b2 /docs
parent3c50547230b9c76ca2a6314f8de06907665a20d8 (diff)
parent54f98c09431faafd5fb952c291b6dfb2179d4229 (diff)
downloadufo-filters-ed5cc04ac7240d2a27e95fd8d9bcce5401d03c39.tar.gz
ufo-filters-ed5cc04ac7240d2a27e95fd8d9bcce5401d03c39.tar.bz2
ufo-filters-ed5cc04ac7240d2a27e95fd8d9bcce5401d03c39.tar.xz
ufo-filters-ed5cc04ac7240d2a27e95fd8d9bcce5401d03c39.zip
Merge pull request #198 from ufo-kit/sliding-window
Add sliding-stack task
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
-------