From 08a3d06c8fc9367f753ddd691f7b9c8a23184b28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Haberth=C3=BCr?= Date: Thu, 23 Nov 2023 15:27:43 +0100 Subject: [PATCH] Typo fix arbittrary --> arbitrary --- applications/image-processing.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/image-processing.ipynb b/applications/image-processing.ipynb index 85c0134c..7d7a8186 100644 --- a/applications/image-processing.ipynb +++ b/applications/image-processing.ipynb @@ -324,7 +324,7 @@ "source": [ "Next you'll want to do some image processing, and apply a function to your images.\n", "\n", - "We'll use a very simple example: converting an RGB image to grayscale. But you can also use this method to apply arbittrary functions to dask images. To convert our image to grayscale, we'll use the equation to calculate luminance ([reference pdf](http://www.poynton.com/PDFs/ColorFAQ.pdf))\": \n", + "We'll use a very simple example: converting an RGB image to grayscale. But you can also use this method to apply arbitrary functions to dask images. To convert our image to grayscale, we'll use the equation to calculate luminance ([reference pdf](http://www.poynton.com/PDFs/ColorFAQ.pdf))\": \n", "\n", "`Y = 0.2125 R + 0.7154 G + 0.0721 B` \n", "\n",