Spaces:
Sleeping
Sleeping
update text and multilingual
Browse files- .gitignore +2 -0
- app.py +70 -12
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
/venvLocal
|
2 |
+
test.py
|
app.py
CHANGED
@@ -10,29 +10,87 @@ def spell_to_image(x, special_text):
|
|
10 |
spell += 'esta imagen es activada magicamente para emanar buena energía'
|
11 |
spell += 'reforzamos la buena energía, las buenas intenciones, los buenos deseos, el amor'
|
12 |
spell += 'aplicamos la siguiente conjuro: ' + special_text
|
13 |
-
spell += 'OM MANI PADME HUNG'
|
14 |
spell += 'para el beneficio de todos los seres'
|
15 |
|
16 |
return x
|
17 |
|
18 |
with gr.Blocks() as demo:
|
19 |
-
gr.
|
20 |
-
|
21 |
-
'''
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
-
|
|
|
|
|
|
|
28 |
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
-
If you know about Radionics, try to add a number rate to be apply to the image and test the result
|
34 |
'''
|
35 |
-
|
|
|
36 |
with gr.Row():
|
37 |
with gr.Column(scale=1):
|
38 |
image_input = gr.Image()
|
|
|
10 |
spell += 'esta imagen es activada magicamente para emanar buena energía'
|
11 |
spell += 'reforzamos la buena energía, las buenas intenciones, los buenos deseos, el amor'
|
12 |
spell += 'aplicamos la siguiente conjuro: ' + special_text
|
13 |
+
spell += 'OM MANI PADME HUNG'
|
14 |
spell += 'para el beneficio de todos los seres'
|
15 |
|
16 |
return x
|
17 |
|
18 |
with gr.Blocks() as demo:
|
19 |
+
with gr.Tab(label="English"):
|
20 |
+
gr.Markdown(
|
21 |
+
'''
|
22 |
+
# Radionic App
|
23 |
+
|
24 |
+
This is an experimental project that aims to create a digital interface for cleansing and
|
25 |
+
energizing digital images on a subtle level. The idea is to apply a subtle energy to the image,
|
26 |
+
which modifies its energy.
|
27 |
+
|
28 |
+
The project is based on the idea and functionalities of a radionic machine.
|
29 |
+
|
30 |
+
## Instructions
|
31 |
+
|
32 |
+
The process is straightforward:
|
33 |
|
34 |
+
1. Upload an image.
|
35 |
+
2. Concentrate in your wish or intention. Syncronice with it.
|
36 |
+
3. Enter your intention for the image in the textbox.
|
37 |
+
4. If nothing is in the texbox, the program will clean the imagen only.
|
38 |
+
3. Apply the intention using the "Clean and Apply" button.
|
39 |
+
4. Try to feel or sense the result in the modified image and compare with the original.
|
40 |
|
41 |
+
There are some example images available for you to use.
|
42 |
+
|
43 |
+
If you have knowledge of radionics, you can also try adding a numerical rate
|
44 |
+
value to be applied to the image and test the result.
|
45 |
|
46 |
+
## Uses
|
47 |
+
|
48 |
+
Use this application for:
|
49 |
+
|
50 |
+
1. Clean images downloaded from the internet.
|
51 |
+
2. Protect your images before share in social media or in internet.
|
52 |
+
3. Share your intentions or energies in your images
|
53 |
|
54 |
+
'''
|
55 |
+
)
|
56 |
+
with gr.Tab(label="Español"):
|
57 |
+
gr.Markdown(
|
58 |
+
'''
|
59 |
+
# Radionica App
|
60 |
+
|
61 |
+
Este es un proyecto experimental que tiene como objetivo crear una interfaz digital para
|
62 |
+
limpiar y energizar imágenes digitales a nivel de su energía sutil. La idea es aplicar una
|
63 |
+
energía sutil a la imagen, modificando su energía.
|
64 |
+
|
65 |
+
El proyecto se basa en la idea y las funcionalidades de una máquina radiónica.
|
66 |
+
|
67 |
+
## Instrucciones
|
68 |
+
|
69 |
+
El proceso es sencillo:
|
70 |
+
|
71 |
+
1. Carga una imagen.
|
72 |
+
2. Concentrate y conecta con la intención y energía que quieres colocar en la imagen.
|
73 |
+
3. Escribe el deseo o intención para la imagen en el cuadro de texto.
|
74 |
+
4. Si no escribes nada, el programa aplicara una limpieza energética a la imagen.
|
75 |
+
5. Aplica la intención utilizando el botón "Clean and Apply".
|
76 |
+
6. Intenta sentir o percibir el resultado en la imagen modificada y comparala con la imagen original.
|
77 |
+
|
78 |
+
|
79 |
+
Hay algunos ejemplos de imágenes disponibles para que puedas usar.
|
80 |
+
|
81 |
+
Si tienes conocimientos de radionica, también puedes intentar agregar un valor numérico de "frecuencia" para aplicar a la imagen y probar el resultado.
|
82 |
+
|
83 |
+
## Usos
|
84 |
+
|
85 |
+
Usa esta aplicación para:
|
86 |
+
|
87 |
+
1. Limpiar la energía de las imagenes descargadas en internet.
|
88 |
+
2. Proteger las imágenes que subes a las redes sociales o a internet en general.
|
89 |
+
3. Comparte energia e intenciones en tus imágenes.
|
90 |
|
|
|
91 |
'''
|
92 |
+
)
|
93 |
+
|
94 |
with gr.Row():
|
95 |
with gr.Column(scale=1):
|
96 |
image_input = gr.Image()
|