Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
arbittrary --> arbitrary
  • Loading branch information
habi authored Nov 23, 2023
1 parent b2c8520 commit 08a3d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/image-processing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 08a3d06

Please sign in to comment.