omar87 commited on
Commit
f4eb306
·
1 Parent(s): f9911e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -17
app.py CHANGED
@@ -1,16 +1,14 @@
1
  import numpy as np
2
- import gradio as gr
3
- from PIL import Image
4
  from skimage.metrics import structural_similarity as ssim
5
- import cv2
6
- import pytesseract
7
  from difflib import SequenceMatcher
8
 
9
  # Function to calculate SSIM between two images
10
  def calculate_ssim(img1, img2):
11
- img1_gray = cv2.cvtColor(img1, cv2.COLOR_RGB2GRAY)
12
- img2_gray = cv2.cvtColor(img2, cv2.COLOR_RGB2GRAY)
13
- return ssim(img1_gray, img2_gray)
14
 
15
  # Function to compare trademarks based on text similarity
16
  def compare_text(trademark1, trademark2):
@@ -38,12 +36,7 @@ def compare_colors(trademark1, trademark2):
38
 
39
  # Function to compare trademarks based on multiple aspects
40
  def compare_trademarks(trademark1, trademark2):
41
- # Resize images to a consistent size
42
- size = (300, 300)
43
- trademark1_resized = trademark1.resize(size)
44
- trademark2_resized = trademark2.resize(size)
45
-
46
- ssim_score = calculate_ssim(np.array(trademark1_resized), np.array(trademark2_resized))
47
  text_similarity = compare_text(trademark1, trademark2)
48
  color_similarity = compare_colors(trademark1, trademark2)
49
 
@@ -64,13 +57,12 @@ def prevent_trademark_conflict(trademark1, trademark2):
64
  iface = gr.Interface(
65
  fn=prevent_trademark_conflict,
66
  inputs=[
67
- gr.inputs.Image(type="pil", label="Trademark Image 1"),
68
- gr.inputs.Image(type="pil", label="Trademark Image 2")
69
  ],
70
  outputs="text",
71
  title="Trademark Conflict Prevention",
72
-
73
- description="Upload two trademark images to prevent conflict."
74
  )
75
 
76
  iface.launch()
 
1
  import numpy as np
 
 
2
  from skimage.metrics import structural_similarity as ssim
3
+ from PIL import Image
4
+ import gradio as gr
5
  from difflib import SequenceMatcher
6
 
7
  # Function to calculate SSIM between two images
8
  def calculate_ssim(img1, img2):
9
+ img1_gray = img1.convert("L")
10
+ img2_gray = img2.convert("L")
11
+ return ssim(np.array(img1_gray), np.array(img2_gray))
12
 
13
  # Function to compare trademarks based on text similarity
14
  def compare_text(trademark1, trademark2):
 
36
 
37
  # Function to compare trademarks based on multiple aspects
38
  def compare_trademarks(trademark1, trademark2):
39
+ ssim_score = calculate_ssim(trademark1, trademark2)
 
 
 
 
 
40
  text_similarity = compare_text(trademark1, trademark2)
41
  color_similarity = compare_colors(trademark1, trademark2)
42
 
 
57
  iface = gr.Interface(
58
  fn=prevent_trademark_conflict,
59
  inputs=[
60
+ gr.inputs.Image(type="file", label="Trademark Image 1"),
61
+ gr.inputs.Image(type="file", label="Trademark Image 2")
62
  ],
63
  outputs="text",
64
  title="Trademark Conflict Prevention",
65
+ description="Upload two trademark images. Get the trademark similarity score."
 
66
  )
67
 
68
  iface.launch()