You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GIMP-ML/README.md

57 lines
2.0 KiB
Markdown

4 years ago
<img src="https://github.com/kritiksoman/tmp/blob/master/cover.png" width="1280" height="180"> <br>
4 years ago
# Semantics for GNU Image Manipulation Program
4 years ago
### [YouTube](https://www.youtube.com/channel/UCzZn99R6Zh0ttGqvZieT4zw) [Instagram](https://www.instagram.com/explore/tags/gimpml/) [Manual](https://github.com/kritiksoman/GIMP-ML/wiki/User-Manual) [Preprint](https://arxiv.org/abs/2004.13060) [Medium](https://medium.com/@kritiksoman)<br>
4 years ago
4 years ago
Updates: <br>
4 years ago
[Work in progress.] Simplified installation and updating method. <br>
4 years ago
[August 2] Added deep matting and k-means. <br>
4 years ago
[July 17] MonoDepth and Colorization models have been updated. <br>
4 years ago
4 years ago
# Screenshot of Menu
4 years ago
![image1](https://github.com/kritiksoman/tmp/blob/master/screenshot.png)
4 years ago
4 years ago
# Installation Steps
4 years ago
[1] Install [GIMP](https://www.gimp.org/downloads/) 2.10.<br>
4 years ago
[2] Clone this repository: git clone https://github.com/kritiksoman/GIMP-ML.git <br>
[3] Open GIMP and go to Preferences -> Folders -> Plug-ins, add the folder gimp-plugins and close GIMP. <br>
4 years ago
[4] Open terminal and run : <br>
```bash installGimpML.sh```<br>
[5] Open GIMP and go to Layer->GIMP-ML->update and click on ok with update weights set to yes. <br>
[6] Restart GIMP.
4 years ago
4 years ago
# Common Issues
[1] No output on running plugin: Please right click on layer and remove alpha channel before using plugins. <br>
[2] GIMP-ML menu not visible: Do following and restart GIMP.<br>
```
sudo apt install gimp-python
cd gimp-plugins
chmod -x *
chmod +x *.py
```
4 years ago
# Citation
Please cite using the following bibtex entry:
```
@article{soman2020GIMPML,
title={GIMP-ML: Python Plugins for using Computer Vision Models in GIMP},
author={Soman, Kritik},
journal={arXiv preprint arXiv:2004.13060},
year={2020}
}
```
4 years ago
# License
| Tools | License |
| ------------- |:-------------:|
| facegen | CC BY-NC-SA 4.0 |
| deblur | BSD 3-clause |
| faceparse | MIT |
| deepcolor | MIT |
| monodepth | MIT |
| super-resolution | MIT |
| deepmatting | Non-commercial purposes |
| deeplab | MIT |
4 years ago
| kmeans | BSD |