From dff8f0d9437b60a1d624704545dc96b4439e5559 Mon Sep 17 00:00:00 2001 From: Shiven Mian Date: Sat, 31 Oct 2015 20:21:50 +0530 Subject: [PATCH] Fixed duplicate target name Address review comments on content of additions and match section title styling of the rest of the guide. --- docs/scenarios/imaging.rst | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/docs/scenarios/imaging.rst b/docs/scenarios/imaging.rst index 4b04859..4dbe427 100644 --- a/docs/scenarios/imaging.rst +++ b/docs/scenarios/imaging.rst @@ -63,26 +63,26 @@ There are more examples of the Pillow library in the OpenSource Computer Vision ---------------------------- +-------------------------- -OpenSource Computer Vision, or OpenCV in short, is a more advanced and useful -image manipulation and processing software than PIL. It has been implemented in several -languages and is very widely used. +OpenSource Computer Vision, more commonly known as OpenCV, is a more advanced image manipulation and processing software than PIL. It has been implemented in several +languages and is widely used. Installation -~~~~~~~~~~~~~ +~~~~~~~~~~~~ -In Python, image processing using OpenCV is implemented using the **cv2** and **NumPy** modules. -Check the installation instructions for OpenCV `here `_. +In Python, image processing using OpenCV is implemented using the ``cv2`` and ``NumPy`` modules. +The `installation instructions for OpenCV `_ should guide you through configuring the project for yourself. -NumPy can be easily downloaded from the Python Package Index(PyPI): +NumPy can be downloaded from the Python Package Index(PyPI): .. code-block:: console $ pip install numpy + Example -~~~~~~~~ +~~~~~~~ .. code-block:: python @@ -101,6 +101,5 @@ Example #Saving filtered image to new file cv2.imwrite('graytest.jpg',gray) -There are more examples of OpenCV in the documentation -`here `_. +There are more Python-implemented examples of OpenCV in this `collection of tutorials `_.