Metadata-Version: 2.1
Name: SuperResolution-GANs
Version: 0.0.3
Summary: Super Resolution Image
Home-page: https://github.com/AbdullahAbdelhakeem6484/ITI_Graduation_Project1_SISR_BY_GAN
Author: Abdullah Abdelhakeem
Author-email: abdullah.abdelhakeem25@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Super Resolution Image (SRGAN)

Generate **S R G A N ** Image

## Instructions

1.Install:

```
pip install srgan
```


2. Download Our Model
```python
import gdown
url = 'https://drive.google.com/uc?id=1MWDeLnpEaZDrKK-OjmzvYLxfjwp-GDcp'
output = 'generatoe_model.h5'
gdown.download(url, output, quiet=False)
```

3.Generate Super Resolution Image:
```python
from srgan import srgan_utils
srgan_utils.SRGAN_predict(lr_image_path)

```




