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
This is a python application which takes a image as input and toonify it (make a cartoonist image of it) using https://deepai.org/machine-learning-model/toonify api.
6
+
You can read more about the Api here : https://deepai.org/machine-learning-model/toonify
7
+
```
8
+
## Third Party Libraries Required :
9
+
1. Request Module # to fetch given image
10
+
2. shutil Module # to save image locally
11
+
12
+
## How to install above Library
13
+
```
14
+
pip install requests
15
+
pip install shutil
16
+
```
17
+
## How to use it :
18
+
1. Download or clone the repository
19
+
2. Install Required Libraries
20
+
4. Run toonify.py
21
+
3. In command line add you api key which you will get by signing up on https://deepai.org/machine-learning-model/toonify
22
+
5. you will be asked to give the path of image you want to toonify
23
+
6. you will get the toonified image in the same directory
0 commit comments