Skip to content

πŸ”Ž PicTrace is a highly efficient image matching platform that leverages computer vision using OpenCV, deep learning with TensorFlow and the ResNet50 model, asynchronous processing with aiohttp, and the FastAPI web framework for rapid and accurate image search.

License

Notifications You must be signed in to change notification settings

Solrikk/PicTrace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Logo


PicTrace πŸ”

PicTrace is a highly efficient image matching platform that leverages computer vision using OpenCV, deep learning with TensorFlow and the ResNet50 model, asynchronous processing with aiohttp, and the FastAPI web framework for rapid and accurate image search. PicTrace allows users to upload images directly or provide URLs, quickly scanning a vast database to find similar images. Asynchronous processing ensures smooth and fast visual search, enhancing the user experience.


Getting Started with PicTrace: πŸš€

PicTrace is a powerful image tracing and comparison tool designed to streamline your development process. Follow these steps to set up your environment and launch the application successfully.

Prerequisites

To work with PicTrace, ensure you have the following components installed:

  • Python 3.8 or higher: PicTrace is built with Python. You can download the latest version of Python from the official website.
  • pip: The package installer for Python, which comes pre-installed with Python 3.4 and higher. We'll use pip to install the necessary dependencies.
  • Git: Required to clone the PicTrace repository. If Git is not already installed on your system, follow the installation instructions on Git's official site.
Operating System Commands for Setup and Launch
Linux bash sudo git clone https://github.com/Solrikk/PicTrace.git cd PicTrace sudo pip install poetry sudo poetry install sudo poetry run python3 main.py
macOS bash sudo git clone https://github.com/Solrikk/PicTrace.git cd PicTrace sudo pip install poetry sudo poetry install sudo poetry run python3 main.py
Windows Open Command Prompt as Administrator and run: bash git clone https://github.com/Solrikk/PicTrace.git cd PicTrace pip install poetry poetry install poetry run python main.py

PicTrace Demo


Online Demos:

Curious to see how PicTrace works in real-time?

Explore my online demo and witness the capabilities of my image matching platform.

Online Demo - Give it a try and see for yourself!

PicTrace Demo

Table of Contents:

  1. Features ⚑
  2. Getting Started with PicTrace πŸš€
  3. Results: πŸ‘¨β€πŸ’»
  4. Examples: πŸ“‹
  5. How SSIM Works in PicTrace
  6. How ORB Works in PicTrace
  7. Combining SSIM and ORB
  8. OpenCV (Open Source Computer Vision Library) 🌐
  9. Neural Network Model (ResNet50) 🧠
  10. Final Selection of Similar Images

Features: ⚑

  • Supports Multiple Technologies πŸ’Ό

    Python with these powerful libraries:

    • FastAPI: Ideal for web application creation and handling HTTP requests, FastAPI is known for its high performance and support for asynchronous operations. Details
    • aiohttp: Perfect for handling asynchronous HTTP requests, such as downloading images by URL, making your app faster and more efficient. Details
    • OpenCV (cv2): A robust computer vision library used for advanced image processing, including loading, resizing, and comparing images, making it a critical component for your image-related tasks. Details
    • numpy: A versatile library for working with multi-dimensional arrays, often used alongside OpenCV for efficient image processing. More Info
    • scikit-image: Particularly, the structural_similarity (SSIM) function from this library is employed to compare the similarity of images, enhancing your application's accuracy in image matching. Details
    • hashlib: Utilized for generating unique hashes for each image, ensuring every image can be uniquely identified and efficiently managed. More Info
  • Supports Multiple Indexes πŸ—‚οΈ

    • Image Hashing: Generating unique hashes for images to ensure unique identification and efficient management.
    • Feature Extraction with ResNet50: Utilizes the ResNet50 model for extracting robust feature representations from images.
    • Cosine Similarity: Measuring similarity between images using cosine similarity on feature vectors extracted from the images.

Results: πŸ‘¨β€πŸ’»

For complex images with many details and possible presence of noise or distortions, even similarity at the level of 20% and above can indicate the presence of significant common features. In such cases, a low percentage of similarity may be expected due to the complexity of the task and the limitations of the algorithm.

Image 1 vs Image 2 Similar Image
27,12%
25,44%
44,16%

Examples: πŸ“‹

(code with comments)

async def find_similar_images(file_path):
    # Load the data from the database, which contains information about images.
    db_data = load_db()
    # Read the target image from the given file path.
    target_image = cv2.imread(file_path)
    # Extract features from the target image using a pre-trained model.
    target_features = extract_features(target_image)
    # Create an aiohttp asynchronous session for handling HTTP requests.
    async with aiohttp.ClientSession() as session:
        # Create asynchronous tasks for the compare_images function for each image in the database.
        tasks = [
            compare_images(session, entry, target_features) for entry in db_data
            if "url" in entry  # Only perform comparisons for entries that contain an image URL.
        ]
        # Wait for all tasks to complete and gather the results.
        results = await asyncio.gather(*tasks)
    # Filter the results, keeping only those with a similarity score greater than 0.
    valid_results = filter(lambda x: x[0] > 0, results)   
    # Sort the filtered results by similarity score in descending order and take the top 5.
    sorted_results = sorted(valid_results, key=lambda x: x[0], reverse=True)[:5]
    # Create a list to store the URLs of the similar images.
    similar_images = []
    for result in sorted_results:
        if result[1]:
            similar_images.append(result[1])
    # Return the list of URLs of the similar images.
    return similar_images

OpenCV (Open Source Computer Vision Library) 🌐:

OpenCV is a powerful computer vision library that provides tools for image and video processing. It is widely used in fields related to machine vision, image recognition, video analysis, and more. The library includes a wide range of algorithms for image analysis, such as object detection, face recognition, motion tracking, video manipulation, and more.

Key features of OpenCV include:

  1. Loading and saving images πŸ–ΌοΈ: Supports various image formats and allows for easy loading, resizing, and saving of images, which is crucial for handling large datasets.
  2. Image processing ✨: Provides functions for filtering images, converting them to grayscale, resizing, rotating, and other manipulations. This is important for preprocessing images before analysis.
  3. Object detection πŸ”: Includes algorithms for detecting edges, corners, and other key points, which helps in identifying and tracking specific objects in a frame.
  4. Object recognition πŸ‘οΈ: Offers tools for recognizing faces, gestures, and other objects in images and videos, which is key for many computer vision applications.

Neural Network Model (ResNet50) 🧠:

image

The ResNet50 (Residual Network) model is one of the most popular and powerful deep learning architectures for image classification and feature extraction tasks. Your neural network model ResNet50 provides the following advantages:

  1. Deep residual networks πŸ—οΈ: Uses residual networks to ease the training of deep neural networks, allowing for the construction of very deep architectures without the risk of vanishing gradients.
  2. Pre-trained weights πŸŽ“: The model comes with pre-trained weights on the ImageNet dataset, which can significantly speed up training and improve accuracy in image classification tasks.
  3. Feature extraction πŸ”‘: The model can be used to extract features from images, which is useful for tasks related to cognitive data analysis and machine learning.
  4. Flexibility πŸš€: The model can be used for both classification and the task of extracting and comparing image features, which is suitable for your application.

Together, OpenCV and ResNet50 can be used to create powerful computer vision applications that can analyze visual data and perform complex tasks, such as automatic object recognition and image classification.


The ORB method, used in computer vision, is particularly popular for tasks related to object recognition, image matching, and tracking. This method focuses on quickly finding key points on images and describing them in a way that allows for efficient comparison.

  1. Oriented FAST (Features from Accelerated Segment Test) πŸš€: This component is responsible for detecting points of interest (or key points) on the image. It quickly identifies corners or edges that stand out in comparison to their surrounding areas. This way, significant or unique sections of the image can be identified.

  2. Rotated BRIEF (Binary Robust Independent Elementary Features) πŸ”„: After key points have been found, it is necessary to create a description for each to allow comparison with key points from another image. BRIEF generates a brief binary description of the points but lacks resistance to image rotation. This is where the "rotated" part comes in - ORB adds the ability to stably describe points even when images are rotated.

Combining these two approaches, ORB provides a fast and efficient way of matching images despite changes in viewing angle, scale, or lighting.

PicTrace uses both SSIM and ORB methods to find images that are similar to an uploaded image. Here's a simplified explanation of how each method works in the context of your application and contributes to finding similar images:

How SSIM Works in PicTrace:

  1. Resizing Images πŸ”§: When comparing the uploaded image to each image in the database, both images are resized to the same dimensions (256x256 pixels). This standardizes the comparison, making it fair and more efficient.
  2. Converting to Grayscale πŸŒ‘: Both images are converted to grayscale. This simplifies the comparison by focusing on the structure and intensity of light rather than getting distracted by color differences.
  3. Structural Similarity Comparison 🧩: The SSIM method then compares these grayscale images to assess their structural similarity. A high score means the images are structurally similar.

How ORB Works in PicTrace:

  1. Detecting Key Points πŸ“: ORB first identifies key points in both the uploaded image and each database image. These points are easily recognizable and can be compared between images.
  2. Describing Key Points πŸ–ŠοΈ: For each detected key point, ORB generates a unique descriptor that summarizes the key point's characteristics. This descriptor is invariant to image rotations.
  3. Matching Key Points πŸ”—: The application matches key points between the uploaded image and each database image. The process involves finding key points in the database image that have descriptors similar to those of the uploaded image.
  4. Scoring Matches πŸ…: The more key points that match between two images, the higher the similarity score based on ORB. This score reflects how many distinctive features the images share.

Together, the SSIM and ORB methods provide a robust and accurate way to find and compare images that are similar to the uploaded image.

About

πŸ”Ž PicTrace is a highly efficient image matching platform that leverages computer vision using OpenCV, deep learning with TensorFlow and the ResNet50 model, asynchronous processing with aiohttp, and the FastAPI web framework for rapid and accurate image search.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published