Spaces:
Sleeping
Sleeping
Deploy Streamlit app to Hugging Face Space
Browse files- README.md +0 -36
- metadata.yaml +15 -0
README.md
DELETED
|
@@ -1,36 +0,0 @@
|
|
| 1 |
-
# 🎨 Image Colorization & Post-Processing Tool
|
| 2 |
-
|
| 3 |
-
This project provides a **Streamlit-based web app** for automatic image **colorization** and **basic post-processing** (sharpening, blurring, undo, saving). It's built using a pretrained deep learning model from [Zhang et al. (2017)](https://richzhang.github.io/colorization/).
|
| 4 |
-
|
| 5 |
-
---
|
| 6 |
-
|
| 7 |
-
## 🚀 Features
|
| 8 |
-
|
| 9 |
-
- ✅ Upload grayscale image
|
| 10 |
-
- 🎨 Auto-colorize using `siggraph17` model
|
| 11 |
-
- 🧪 Sharpen or blur the result
|
| 12 |
-
- ↩️ Undo changes (1-step)
|
| 13 |
-
- 💾 Save processed image
|
| 14 |
-
|
| 15 |
-
---
|
| 16 |
-
|
| 17 |
-
## 🛠️ Technologies Used
|
| 18 |
-
|
| 19 |
-
- Python
|
| 20 |
-
- Streamlit
|
| 21 |
-
- PyTorch
|
| 22 |
-
- OpenCV
|
| 23 |
-
- PIL (Pillow)
|
| 24 |
-
- `colorizers` (Zhang's pretrained models)
|
| 25 |
-
|
| 26 |
-
---
|
| 27 |
-
|
| 28 |
-
## 📦 Installation
|
| 29 |
-
|
| 30 |
-
```bash
|
| 31 |
-
# Clone the repository
|
| 32 |
-
git clone https://github.com/haiderakt/image-colorization.git
|
| 33 |
-
cd image-colorization
|
| 34 |
-
|
| 35 |
-
# Install dependencies
|
| 36 |
-
pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
metadata.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
title: "Image Colorization"
|
| 2 |
+
emoji: 🎨
|
| 3 |
+
colorFrom: indigo
|
| 4 |
+
colorTo: pink
|
| 5 |
+
sdk: streamlit
|
| 6 |
+
sdk_version: "1.33.0"
|
| 7 |
+
app_file: app.py
|
| 8 |
+
pinned: false
|
| 9 |
+
license: mit
|
| 10 |
+
tags:
|
| 11 |
+
- image-colorization
|
| 12 |
+
- computer-vision
|
| 13 |
+
- deep-learning
|
| 14 |
+
- streamlit
|
| 15 |
+
- huggingface-spaces
|