mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-01 04:20:39 +02:00
Made Necessary Changes on Markdown
This commit is contained in:
@@ -13,18 +13,11 @@ Opencv currently supports wide variety of languages like, C++, Python, Java etc
|
|||||||
|
|
||||||
#### Installation
|
#### Installation
|
||||||
Please refer to these articles for installation of OpenCV on your computer.
|
Please refer to these articles for installation of OpenCV on your computer.
|
||||||
* Windows Installation Instructions:
|
* Windows Installation Instructions: [https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_setup/py_setup_in_windows/py_setup_in_windows.html#install-opencv-python-in-windows]
|
||||||
<https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_setup/py_setup_in_windows/py_setup_in_windows.html#install-opencv-python-in-windows>
|
* Mac Installation Instructions (High Sierra): [https://medium.com/@nuwanprabhath/installing-opencv-in-macos-high-sierra-for-python-3-89c79f0a246a]
|
||||||
|
* Linux Installation Instructions (Ubuntu 18.04): [https://www.pyimagesearch.com/2018/05/28/ubuntu-18-04-how-to-install-opencv]
|
||||||
* Mac Installation Instructions (High Sierra):
|
|
||||||
https://medium.com/@nuwanprabhath/installing-opencv-in-macos-high-sierra-for-python-3-89c79f0a246a
|
|
||||||
|
|
||||||
* Linux Installation Instructions (Ubuntu 18.04):
|
|
||||||
<https://www.pyimagesearch.com/2018/05/28/ubuntu-18-04-how-to-install-opencv/>
|
|
||||||
|
|
||||||
### Here we will be focusing on python implementation of OpenCV
|
### Here we will be focusing on python implementation of OpenCV
|
||||||
|
```python
|
||||||
```
|
|
||||||
# Reading image in OpenCV
|
# Reading image in OpenCV
|
||||||
import cv2
|
import cv2
|
||||||
img = cv2.imread('cat.jpg')
|
img = cv2.imread('cat.jpg')
|
||||||
@@ -135,22 +128,14 @@ cv2.destroyAllWindows()
|
|||||||
# If you wish to destroy specific window pass the exact name of window you created.
|
# If you wish to destroy specific window pass the exact name of window you created.
|
||||||
```
|
```
|
||||||
|
|
||||||
Further Reading:
|
### Further Reading:
|
||||||
|
|
||||||
Download Cascade from
|
* Download Cascade from [https://github.com/opencv/opencv/blob/master/data/haarcascades]
|
||||||
<https://github.com/opencv/opencv/blob/master/data/haarcascades/>
|
* OpenCV drawing Functions [https://docs.opencv.org/2.4/modules/core/doc/drawing_functions.html]
|
||||||
|
* An up-to-date language reference can be found at [https://opencv.org]
|
||||||
OpenCV drawing Functions
|
* Additional resources may be found at [https://en.wikipedia.org/wiki/OpenCV]
|
||||||
<https://docs.opencv.org/2.4/modules/core/doc/drawing_functions.html>
|
* Good OpenCv Tutorials
|
||||||
|
* [https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.html]
|
||||||
An up-to-date language reference can be found at
|
* [https://realpython.com/python-opencv-color-spaces]
|
||||||
<https://opencv.org/>
|
* [https://pyimagesearch.com]
|
||||||
|
* [https://www.learnopencv.com]
|
||||||
Additional resources may be found at
|
|
||||||
<https://en.wikipedia.org/wiki/OpenCV>
|
|
||||||
|
|
||||||
Good OpenCv Tutorials
|
|
||||||
<https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_tutorials.html>
|
|
||||||
<https://realpython.com/python-opencv-color-spaces/>
|
|
||||||
<https://pyimagesearch.com>
|
|
||||||
<https://www.learnopencv.com>
|
|
||||||
|
Reference in New Issue
Block a user