Skip to main content

A versatile Python package leveraging machine learning model for efficient image comparisons.

Project description

Pixel Perfect

A versatile Python package leveraging TensorFlow's machine learning model for efficient image comparisons. Designed to seamlessly integrate with Selenium, it empowers developers with powerful tools for UI validations, making it a valuable asset for automated testing and visual verification in web applications.

Installation

You can install pixel_perfect using pip:

pip install pixel_perfect 

Usage: Image Comparison

The image_similarity method allows you to compare two images and receive a boolean value indicating whether the images are similar or not. The comparison is performed with a default threshold of 0.1, providing a balance between strictness and leniency. You can customize the threshold by adjusting the value.

from pixel_perfect import image_similarity 

# Provide paths to the images for comparison
image_path1 
image_path2

# Compare the images with default threshold
isImageSimilar = image_similarity(image_path1, image_path2)

# Compare the images with custom threshold
isImageSimilar = image_similarity(image_path1, image_path2, 1)

You can utilize the image_similarity_score method to compare two images and obtain the similarity score. Here's a simple example:

from pixel_perfect import image_similarity 

# Provide paths to the images for comparison
image_path1 
image_path2

# Compare the images
similarity_score = image_similarity(image_path1, image_path2)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pixel_perfect-3.4.3.tar.gz (6.3 kB view hashes)

Uploaded Source

Built Distribution

pixel_perfect-3.4.3-py3-none-any.whl (8.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page