Hiroaki Ogasawara commited on
Commit
79f7841
·
1 Parent(s): 59d0eb8

chore: add hashes

Browse files
Files changed (1) hide show
  1. app.py +29 -13
app.py CHANGED
@@ -5,18 +5,34 @@ import imagehash
5
  def compare_images(img1, img2):
6
  if img1 is None or img2 is None:
7
  return "画像を2つともアップロードしてください。"
8
- hash1 = imagehash.average_hash(img1)
9
- hash2 = imagehash.average_hash(img2)
10
- diff = hash1 - hash2
11
- return f"2つの画像のハッシュ差異は: {diff} です。"
12
-
13
-
14
- iface = gr.Interface(
15
- fn=compare_images,
16
- inputs=[gr.Image(type="pil"), gr.Image(type="pil")],
17
- outputs="text",
18
- title="画像ハッシュ差分計算アプリ",
19
- description="2つの画像をアップロードして、imagehashでハッシュの差を計算します。",
20
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
  iface.launch()
 
5
  def compare_images(img1, img2):
6
  if img1 is None or img2 is None:
7
  return "画像を2つともアップロードしてください。"
8
+ hashes = {}
9
+ a_hash1 = imagehash.average_hash(img1)
10
+ a_hash2 = imagehash.average_hash(img2)
11
+ hashes["average_hash"] = a_hash1 - a_hash2
12
+
13
+ p_hash1 = imagehash.phash(img1)
14
+ p_hash2 = imagehash.phash(img2)
15
+ hashes["phash"] = p_hash1 - p_hash2
16
+
17
+ d_hash1 = imagehash.dhash(img1)
18
+ d_hash2 = imagehash.dhash(img2)
19
+ hashes["dhash"] = d_hash1 - d_hash2
20
+
21
+ w_hash1 = imagehash.whash(img1)
22
+ w_hash2 = imagehash.whash(img2)
23
+ hashes["whash"] = w_hash1 - w_hash2
24
+
25
+ return hashes
26
+
27
+
28
+ with gr.Blocks() as iface:
29
+ gr.Markdown("# ImageHash Playground")
30
+ gr.Markdown("2つの画像をアップロードして、imagehashでハッシュの差を計算します。")
31
+ with gr.Row():
32
+ img1 = gr.Image(type="pil")
33
+ img2 = gr.Image(type="pil")
34
+ output = gr.Textbox()
35
+ btn = gr.Button("計算")
36
+ btn.click(compare_images, inputs=[img1, img2], outputs=output)
37
 
38
  iface.launch()