Spaces:
Sleeping
Sleeping
import gradio as gr | |
import cv2 | |
import numpy as np | |
import matplotlib.pyplot as plt | |
# Function to compare two images and highlight differences | |
def compare_images(mockup, ui_screenshot, check_text, check_color, check_spacing): | |
# Convert images to grayscale | |
mockup_gray = cv2.cvtColor(np.array(mockup), cv2.COLOR_RGB2GRAY) | |
ui_screenshot_gray = cv2.cvtColor(np.array(ui_screenshot), cv2.COLOR_RGB2GRAY) | |
# Compute the absolute difference between the two images | |
difference = cv2.absdiff(mockup_gray, ui_screenshot_gray) | |
# Threshold the difference image to get a binary image | |
_, thresh = cv2.threshold(difference, 30, 255, cv2.THRESH_BINARY) | |
# Find contours of the differences | |
contours, _ = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) | |
# Create a copy of the original image to draw the differences | |
highlighted_image = np.array(mockup) | |
# Draw red circles around the differences | |
for contour in contours: | |
if cv2.contourArea(contour) > 100: # Filter out small differences | |
x, y, w, h = cv2.boundingRect(contour) | |
cv2.circle(highlighted_image, (x + w // 2, y + h // 2), 10, (255, 0, 0), -1) | |
# Generate a report based on the selected options | |
report = "Comparison Report:\n" | |
if check_text: | |
report += "Text Differences: This feature requires advanced text recognition.\n" | |
if check_color: | |
report += "Color Differences: This feature requires color analysis.\n" | |
if check_spacing: | |
report += "Spacing Differences: This feature requires layout analysis.\n" | |
# Convert the highlighted image back to RGB for display | |
highlighted_image_rgb = cv2.cvtColor(highlighted_image, cv2.COLOR_BGR2RGB) | |
return highlighted_image_rgb, report | |
# Create the Gradio interface | |
with gr.Blocks() as demo: | |
gr.Markdown("## Welcome to the UI Difference Spotter!") | |
gr.Markdown("Please upload the design mockup and the developed UI screenshot you want to compare.") | |
with gr.Row(): | |
mockup_upload = gr.Image(label="Upload Design Mockup", type="pil") | |
ui_screenshot_upload = gr.Image(label="Upload Developed UI Screenshot", type="pil") | |
with gr.Row(): | |
check_text = gr.Checkbox(label="Check Text Differences", value=True) | |
check_color = gr.Checkbox(label="Check Color Differences", value=True) | |
check_spacing = gr.Checkbox(label="Check Spacing Differences", value=True) | |
with gr.Row(): | |
compare_button = gr.Button("Compare Images") | |
with gr.Row(): | |
highlighted_image = gr.Image(label="Highlighted Differences") | |
report_output = gr.Textbox(label="Comparison Details", interactive=False) | |
# Define the event listener for the compare button | |
compare_button.click( | |
fn=compare_images, | |
inputs=[mockup_upload, ui_screenshot_upload, check_text, check_color, check_spacing], | |
outputs=[highlighted_image, report_output] | |
) | |
# Launch the Gradio app | |
if __name__ == "__main__": | |
demo.launch(show_error=True) |