RootYuan commited on
Commit
81ac096
·
1 Parent(s): 7a710d8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md CHANGED
@@ -1,3 +1,58 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # PaintMind
6
+
7
+ ## Install
8
+ ````
9
+ pip install git+https://github.com/Qiyuan-Ge/PaintMind.git
10
+ ````
11
+
12
+ ## Import
13
+ ````
14
+ import paintmind as pm
15
+ ````
16
+
17
+ ## Reconstruction
18
+ #### 1.
19
+ ````
20
+ pm.reconstruction(img_url='https://cdn.pixabay.com/photo/2014/10/22/15/47/squirrel-498139_960_720.jpg')
21
+ ````
22
+ <div align=center>
23
+ <img src="https://github.com/Qiyuan-Ge/PaintMind/blob/main/assets/rec_1.png?raw=true">
24
+ </div>
25
+
26
+ #### 2.
27
+ ````
28
+ pm.reconstruction(img_url='https://cdn.pixabay.com/photo/2017/04/09/10/44/sea-shells-2215408_960_720.jpg')
29
+ ````
30
+ <div align=center>
31
+ <img src="https://github.com/Qiyuan-Ge/PaintMind/blob/main/assets/rec_2.png?raw=true">
32
+ </div>
33
+
34
+ #### 3.
35
+ ````
36
+ pm.reconstruction(img_url='https://cdn.pixabay.com/photo/2015/06/19/21/24/avenue-815297_960_720.jpg')
37
+ ````
38
+ <div align=center>
39
+ <img src="https://github.com/Qiyuan-Ge/PaintMind/blob/main/assets/rec_3.png?raw=true">
40
+ </div>
41
+
42
+ #### 4.
43
+ ````
44
+ pm.reconstruction(img_url='https://cdn.pixabay.com/photo/2017/03/30/18/17/girl-2189247_960_720.jpg')
45
+ ````
46
+ <div align=center>
47
+ <img src="https://github.com/Qiyuan-Ge/PaintMind/blob/main/assets/rec_4.png?raw=true">
48
+ </div>
49
+
50
+ #### 5.
51
+ ````
52
+ pm.reconstruction(img_url='https://cdn.pixabay.com/photo/2017/10/28/07/47/woman-2896389_960_720.jpg')
53
+ ````
54
+ <div align=center>
55
+ <img src="https://github.com/Qiyuan-Ge/PaintMind/blob/main/assets/rec_5.png?raw=true">
56
+ </div>
57
+
58
+ ````