summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Farago <sensej007@email.cz>2020-04-09 11:30:03 +0200
committerTomas Farago <sensej007@email.cz>2020-04-09 11:30:03 +0200
commit1c899757b7dd3b51c7b00832211e56a87b257508 (patch)
treecf8737352d87e1b59a27cd75bf86eddda7cd4143
parent000fe44377a6d9cea01a963c865773888da58cb6 (diff)
downloadufo-filters-1c899757b7dd3b51c7b00832211e56a87b257508.tar.gz
ufo-filters-1c899757b7dd3b51c7b00832211e56a87b257508.tar.bz2
ufo-filters-1c899757b7dd3b51c7b00832211e56a87b257508.tar.xz
ufo-filters-1c899757b7dd3b51c7b00832211e56a87b257508.zip
sliding-stack: document ordered parameter
-rw-r--r--docs/filters.rst13
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/filters.rst b/docs/filters.rst
index 76b16e7..ff901bb 100644
--- a/docs/filters.rst
+++ b/docs/filters.rst
@@ -765,15 +765,20 @@ Stacking with sliding window
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.
+ copied to all positions in the beginning. By default, 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. If you want them to appear ordered with
+ respect to their arrival time, use :gobj:prop:`ordered`.
.. gobj:prop:: number:uint
Number of items, i.e. the length of the third dimension.
+ .. gobj:prop:: ordered:boolean
+
+ Order items in the sliding window.
+
Merging
-------