|
import cv2 as cv
|
|
import numpy as np
|
|
import gradio as gr
|
|
|
|
def nostalji(resim):
|
|
|
|
resim = np.array(resim)
|
|
|
|
gray_resim = cv.cvtColor(resim, cv.COLOR_BGR2GRAY)
|
|
return gray_resim
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Markdown('# Görseli Siyah Beyaza Çevirme Uygulaması')
|
|
gr.Markdown('Bir Resim Yükleyin ve Siyah Beyaz Olsun.')
|
|
|
|
image_input = gr.Image(type='pil', label='Giriş Resmi')
|
|
image_output = gr.Image(type='numpy', label='Sonuç Resmi')
|
|
|
|
|
|
btn = gr.Button('Siyah Beyaza Çevir')
|
|
|
|
|
|
btn.click(fn=nostalji, inputs=image_input, outputs=image_output)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch(share=True)
|
|
|