summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTomas Farago <sensej007@email.cz>2019-08-09 11:20:19 +0200
committerTomas Farago <sensej007@email.cz>2020-02-05 10:33:57 +0100
commit613273cbf1cbf681d19d4649c86b593aea7f2df3 (patch)
tree0c8c85083c023a1a14c42a41eb976066aee7c1ff /docs
parent076ef3b717c58ae1fca593ab936c649aa14936a9 (diff)
downloadufo-filters-613273cbf1cbf681d19d4649c86b593aea7f2df3.tar.gz
ufo-filters-613273cbf1cbf681d19d4649c86b593aea7f2df3.tar.bz2
ufo-filters-613273cbf1cbf681d19d4649c86b593aea7f2df3.tar.xz
ufo-filters-613273cbf1cbf681d19d4649c86b593aea7f2df3.zip
Add FindLargeSpots
Diffstat (limited to 'docs')
-rw-r--r--docs/filters.rst31
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/filters.rst b/docs/filters.rst
index 8afd0cb..041b893 100644
--- a/docs/filters.rst
+++ b/docs/filters.rst
@@ -590,6 +590,37 @@ Non-local-means denoising
+Finding large spots
+-------------------
+
+.. gobj:class:: find-large-spots
+
+ Find large spots with extreme values in an image. First, pixels with values
+ greater than :gobj:prop:`spot_threshold` are added to the mask, then
+ connected pixels with absolute difference between them and the originally
+ detected greater than :gobj:prop:`grow-threshold` are added to the mask. In
+ the end, holes are also removed from the mask.
+
+ .. gobj:prop:: spot-threshold:float
+
+ Pixels with values greater than this threshold are added to the mask.
+
+ .. gobj:prop:: grow-threshold:float
+
+ Pixels connected to the ones found by :gobj:prop:`spot-threshold` with
+ absolute difference greater than this threshold are added to the mask.
+ If the value is 0, it is automatically set to full width at tenth
+ maximum of the estimated noise standard deviation.
+
+ .. gobj:prop:: addressing-mode:enum
+
+ Addressing mode specifies the behavior for pixels falling outside the
+ original image. See OpenCL ``sampler_t`` documentation for more
+ information. This parameter is used only for automatic noise standard
+ deviation estimation.
+
+
+
Horizontal interpolation
------------------------