From 55293d39c354cc7a4ffa65f67b149d8f1cd787b0 Mon Sep 17 00:00:00 2001 From: Jahnvi Date: Mon, 22 Dec 2025 22:26:39 +0530 Subject: [PATCH] Fix wording in Adding Images Tutorial --- doc/tutorials/core/adding_images/adding_images.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorials/core/adding_images/adding_images.markdown b/doc/tutorials/core/adding_images/adding_images.markdown index 7f3de47b80..90679a1b39 100644 --- a/doc/tutorials/core/adding_images/adding_images.markdown +++ b/doc/tutorials/core/adding_images/adding_images.markdown @@ -27,12 +27,12 @@ Theory The explanation below belongs to the book [Computer Vision: Algorithms and Applications](http://szeliski.org/Book/) by Richard Szeliski -From our previous tutorial, we know already a bit of *Pixel operators*. An interesting dyadic +From our previous tutorial, we already know a bit of *Pixel operators*. An interesting dyadic (two-input) operator is the *linear blend operator*: \f[g(x) = (1 - \alpha)f_{0}(x) + \alpha f_{1}(x)\f] -By varying \f$\alpha\f$ from \f$0 \rightarrow 1\f$ this operator can be used to perform a temporal +By varying \f$\alpha\f$ from \f$0 \rightarrow 1\f$, this operator can be used to perform a temporal *cross-dissolve* between two images or videos, as seen in slide shows and film productions (cool, eh?)