You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Cartooning Image/README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,18 +8,17 @@ We aim to transform images into its cartoon. Yes, we will CARTOONIFY the images.
8
8
OpenCV is an open-source python library used for computer vision and machine learning. It is mainly aimed at real-time computer vision and image processing. It is used to perform different operations on images which transform them using different techniques.
9
9
In this article, we will try to perform some image transformation using the CV2 version of OpenCV.
10
10
11
-
###We will install opencv and numpy using the code below:
11
+
## We will install opencv and numpy using the code below:
12
12
```shell
13
13
pip install opencv-python
14
14
pip install numpy
15
15
```
16
16
17
-
18
-
### Now, we will import required libraries that are cv2 and numpy using the code given below:
17
+
## Now, we will import required libraries that are cv2 and numpy using the code given below:
0 commit comments