Spaces:
Sleeping
Sleeping
File size: 711 Bytes
78e2e40 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import gradio as gr
from PIL import Image
import imagehash
def compare_images(img1, img2):
if img1 is None or img2 is None:
return "画像を2つともアップロードしてください。"
hash1 = imagehash.average_hash(img1)
hash2 = imagehash.average_hash(img2)
diff = hash1 - hash2
return f"2つの画像のハッシュ差異は: {diff} です。"
iface = gr.Interface(
fn=compare_images,
inputs=[
gr.Image(type="pil"),
gr.Image(type="pil")
],
outputs="text",
title="画像ハッシュ差分計算アプリ",
description="2つの画像をアップロードして、imagehashでハッシュの差を計算します。"
)
iface.launch()
|