This commit is contained in:
2025-03-18 10:55:58 +08:00
parent cf51f3b7c4
commit 904aa4f1aa
17 changed files with 238 additions and 1 deletions
+24 -1
View File
@@ -1 +1,24 @@
First Commit
### Start
See the `conf.py`:
```
scheme = 'B'
schemeA = {
'image_name': 'd1.jpg',
'is_lama': False,
'inpaint_radius': 3,
'is_gaussianblur': True,
'gaussian_radius': 9 # Odd number
}
schemeB = {
'image_name': 'd1.jpg',
'gaussian_radius': 51, # Odd number
'is_use_fill_color': False,
'fill_color': [227, 234, 244]
}
```
You can choose scheme whcih you want.
The A is useof openCV inpaint or model(LaMa); And B is useof openCV but no inpaint.
When you finished the conf, run `python main.py`.