import gradio as gr import numpy as np def spell_to_image(x, special_text): spell = '' spell += 'Esta imagen es limpiada de energía caotica, dañida y de la mala intención' spell += 'pero mantiene cualquier energía sana de los lugares, seres, objetos y buenas intenciones presentes' spell += 'OM AH HUNG, para limpiar' spell += 'esta imagen es activada magicamente para emanar buena energía' spell += 'reforzamos la buena energía, las buenas intenciones, los buenos deseos, el amor' spell += 'aplicamos la siguiente conjuro: ' + special_text spell += 'OM MANI PADME HUNG' spell += 'para el beneficio de todos los seres' return x with gr.Blocks() as demo: with gr.Tab(label="English"): gr.Markdown( ''' # Radionic App This is an experimental project that aims to create a digital interface for cleansing and energizing digital images on a subtle level. The idea is to apply a subtle energy to the image, which modifies its energy. The project is based on the idea and functionalities of a radionic machine. ## Instructions The process is straightforward: 1. Upload an image. 2. Concentrate in your wish or intention. Syncronice with it. 3. Enter your intention for the image in the textbox. 4. If nothing is in the texbox, the program will clean the imagen only. 3. Apply the intention using the "Clean and Apply" button. 4. Try to feel or sense the result in the modified image and compare with the original. There are some example images available for you to use. If you have knowledge of radionics, you can also try adding a numerical rate value to be applied to the image and test the result. ## Uses Use this application for: 1. Clean images downloaded from the internet. 2. Protect your images before share in social media or in internet. 3. Share your intentions or energies in your images ''' ) with gr.Tab(label="Español"): gr.Markdown( ''' # Radionica App Este es un proyecto experimental que tiene como objetivo crear una interfaz digital para limpiar y energizar imágenes digitales a nivel de su energía sutil. La idea es aplicar una energía sutil a la imagen, modificando su energía. El proyecto se basa en la idea y las funcionalidades de una máquina radiónica. ## Instrucciones El proceso es sencillo: 1. Carga una imagen. 2. Concentrate y conecta con la intención y energía que quieres colocar en la imagen. 3. Escribe el deseo o intención para la imagen en el cuadro de texto. 4. Si no escribes nada, el programa aplicara una limpieza energética a la imagen. 5. Aplica la intención utilizando el botón "Clean and Apply". 6. Intenta sentir o percibir el resultado en la imagen modificada y comparala con la imagen original. Hay algunos ejemplos de imágenes disponibles para que puedas usar. 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. ## Usos Usa esta aplicación para: 1. Limpiar la energía de las imagenes descargadas en internet. 2. Proteger las imágenes que subes a las redes sociales o a internet en general. 3. Comparte energia e intenciones en tus imágenes. ''' ) with gr.Row(): with gr.Column(scale=1): image_input = gr.Image() spell_input = gr.Text(lines=2, placeholder="Write your own spell") spell_button = gr.Button("Clean and protect") with gr.Column(scale=2): image_output = gr.Image() spell_button.click(spell_to_image, inputs=[image_input,spell_input], outputs=image_output) examples = gr.Examples(examples=['bernd-dittrich-unsplash (1).jpg', 'leiada-krozjhen-8nP8jsg3u68-unsplash.jpg', 'michael-martinelli-cnt3JwRn4eI-unsplash.jpg', 'mustafa-aslan-CZLuLLDC8mQ-unsplash.jpg', 'quang-nguyen-vinh-3il07gRCne0-unsplash.jpg'], inputs=[image_input]) demo.launch()