Spaces:
Runtime error
Runtime error
Sagar Bharadwaj commited on
Commit ·
11ee5c2
1
Parent(s): 314b8be
Added dependencies
Browse files- README.md +8 -0
- requirements.txt +5 -0
README.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Color by number
|
| 2 |
|
| 3 |
"[Color by number](https://en.wikipedia.org/wiki/Paint_by_number)" is a coloring activity in which the canvas is delineated into sections labelled with numbers and the user fills in these sections with colors corresponding to their numbers, in a manner similar to a coloring book. This project helps you create your own Color By Number kit for an image of your choice.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Color By Number
|
| 3 |
+
sdk: gradio
|
| 4 |
+
sdk_version: 4.25.0
|
| 5 |
+
app_file: app.py
|
| 6 |
+
license: mit
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
# Color by number
|
| 10 |
|
| 11 |
"[Color by number](https://en.wikipedia.org/wiki/Paint_by_number)" is a coloring activity in which the canvas is delineated into sections labelled with numbers and the user fills in these sections with colors corresponding to their numbers, in a manner similar to a coloring book. This project helps you create your own Color By Number kit for an image of your choice.
|
requirements.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This is used by Hugging Spaces hosting to install the required packages
|
| 2 |
+
|
| 3 |
+
opencv==4.6.0
|
| 4 |
+
scipy==1.11.4
|
| 5 |
+
python-polylabel==0.6
|