1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

doc: fix typo in py_tutorials

This commit is contained in:
Pranit Bauva
2017-10-01 18:46:58 +05:30
parent 9365817bfd
commit d3e3d0996c
4 changed files with 5 additions and 5 deletions
@@ -130,7 +130,7 @@ Or
>>> b = img[:,:,0]
@endcode
Suppose, you want to make all the red pixels to zero, you need not split like this and put it equal
to zero. You can simply use Numpy indexing, and that is more faster.
to zero. You can simply use Numpy indexing, and that is faster.
@code{.py}
>>> img[:,:,2] = 0
@endcode