https://github.com/akverma26/identify-celebrity
Identify any celebrity in an image.
https://github.com/akverma26/identify-celebrity
gui kivy-framework python sightengine
Last synced: 5 months ago
JSON representation
Identify any celebrity in an image.
- Host: GitHub
- URL: https://github.com/akverma26/identify-celebrity
- Owner: akverma26
- Archived: true
- Created: 2020-02-07T20:48:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-07T22:08:49.000Z (over 5 years ago)
- Last Synced: 2024-09-25T20:21:02.734Z (9 months ago)
- Topics: gui, kivy-framework, python, sightengine
- Language: Python
- Size: 1.24 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Identify the name of the Celebrity in a given image.
- Browse any Image on your local machine or paste the url of an online image and then you will get the name of the celebrity in the given image just after clicking on the button Identify the Celebrity.
- The entire GUI is developed using **[Kivy](https://kivy.org/#home)** framework in python.
- To Identify the celebrity in an image an API is used that is provided by [**SightEngine**](https://sightengine.com/docs/getstarted).
# Requirments
- **Kivy** (for GUI)
```
pip install kivy
```- **urllib** (for online image)
```
pip install urllib
```- **SightEngine API** (for API accessing)
```
pip install sightengine
```
# How to run
Simply run the file **`kivyDemo.py`** using **`python kivyDemo.py`** and then paste the url of an online image or browse an offline image.
# Screenshot(s)

# References
- Kivy
https://kivy.org/#home
- SightEngine
https://sightengine.com/
https://sightengine.com/docs/getstarted
```python
# if you haven't already, install the SDK with "pip install sightengine"
from sightengine.client import SightengineClient
client = SightengineClient('{api_user}', '{api_secret}')
output = client.check('{model}').set_file('/full/path/to/image.jpg')
```