Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- requirements.txt +2 -2
- run.ipynb +1 -1
- run.py +0 -4
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
gradio-client @ git+https://github.com/gradio-app/gradio@
|
2 |
-
https://gradio-builds.s3.amazonaws.com/
|
3 |
opencv-python
|
4 |
numpy
|
|
|
1 |
+
gradio-client @ git+https://github.com/gradio-app/gradio@9b42ba8f1006c05d60a62450d3036ce0d6784f86#subdirectory=client/python
|
2 |
+
https://gradio-builds.s3.amazonaws.com/9b42ba8f1006c05d60a62450d3036ce0d6784f86/gradio-4.39.0-py3-none-any.whl
|
3 |
opencv-python
|
4 |
numpy
|
run.ipynb
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: color_generator"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio opencv-python numpy"]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import cv2\n", "import numpy as np\n", "import random\n", "\n", "
|
|
|
1 |
+
{"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: color_generator"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio opencv-python numpy"]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import cv2\n", "import numpy as np\n", "import random\n", "\n", "# Convert decimal color to hexadecimal color\n", "def RGB_to_Hex(rgb):\n", " color = \"#\"\n", " for i in rgb:\n", " num = int(i)\n", " color += str(hex(num))[-2:].replace(\"x\", \"0\").upper()\n", " return color\n", "\n", "# Randomly generate light or dark colors\n", "def random_color(is_light=True):\n", " return (\n", " random.randint(0, 127) + int(is_light) * 128,\n", " random.randint(0, 127) + int(is_light) * 128,\n", " random.randint(0, 127) + int(is_light) * 128,\n", " )\n", "\n", "def switch_color(color_style):\n", " is_light = color_style == \"light\"\n", " back_color_ = random_color(is_light) # Randomly generate colors\n", " back_color = RGB_to_Hex(back_color_) # Convert to hexadecimal\n", "\n", " # Draw color pictures.\n", " w, h = 50, 50\n", " img = np.zeros((h, w, 3), np.uint8)\n", " cv2.rectangle(img, (0, 0), (w, h), back_color_, thickness=-1)\n", "\n", " return back_color, back_color, img\n", "\n", "inputs = [gr.Radio([\"light\", \"dark\"], value=\"light\")]\n", "\n", "outputs = [\n", " gr.ColorPicker(label=\"color\"),\n", " gr.Textbox(label=\"hexadecimal color\"),\n", " gr.Image(type=\"numpy\", label=\"color picture\"),\n", "]\n", "\n", "title = \"Color Generator\"\n", "description = (\n", " \"Click the Submit button, and a dark or light color will be randomly generated.\"\n", ")\n", "\n", "demo = gr.Interface(\n", " fn=switch_color,\n", " inputs=inputs,\n", " outputs=outputs,\n", " title=title,\n", " description=description,\n", ")\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
|
run.py
CHANGED
@@ -3,7 +3,6 @@ import cv2
|
|
3 |
import numpy as np
|
4 |
import random
|
5 |
|
6 |
-
|
7 |
# Convert decimal color to hexadecimal color
|
8 |
def RGB_to_Hex(rgb):
|
9 |
color = "#"
|
@@ -12,7 +11,6 @@ def RGB_to_Hex(rgb):
|
|
12 |
color += str(hex(num))[-2:].replace("x", "0").upper()
|
13 |
return color
|
14 |
|
15 |
-
|
16 |
# Randomly generate light or dark colors
|
17 |
def random_color(is_light=True):
|
18 |
return (
|
@@ -21,7 +19,6 @@ def random_color(is_light=True):
|
|
21 |
random.randint(0, 127) + int(is_light) * 128,
|
22 |
)
|
23 |
|
24 |
-
|
25 |
def switch_color(color_style):
|
26 |
is_light = color_style == "light"
|
27 |
back_color_ = random_color(is_light) # Randomly generate colors
|
@@ -34,7 +31,6 @@ def switch_color(color_style):
|
|
34 |
|
35 |
return back_color, back_color, img
|
36 |
|
37 |
-
|
38 |
inputs = [gr.Radio(["light", "dark"], value="light")]
|
39 |
|
40 |
outputs = [
|
|
|
3 |
import numpy as np
|
4 |
import random
|
5 |
|
|
|
6 |
# Convert decimal color to hexadecimal color
|
7 |
def RGB_to_Hex(rgb):
|
8 |
color = "#"
|
|
|
11 |
color += str(hex(num))[-2:].replace("x", "0").upper()
|
12 |
return color
|
13 |
|
|
|
14 |
# Randomly generate light or dark colors
|
15 |
def random_color(is_light=True):
|
16 |
return (
|
|
|
19 |
random.randint(0, 127) + int(is_light) * 128,
|
20 |
)
|
21 |
|
|
|
22 |
def switch_color(color_style):
|
23 |
is_light = color_style == "light"
|
24 |
back_color_ = random_color(is_light) # Randomly generate colors
|
|
|
31 |
|
32 |
return back_color, back_color, img
|
33 |
|
|
|
34 |
inputs = [gr.Radio(["light", "dark"], value="light")]
|
35 |
|
36 |
outputs = [
|