Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Project within the subject POBR - Podstawy Przetwarzania Obrazów (basics of image processing). The goal is to create specific logo recognition pipeline implementing everything from scratch.

License

Notifications You must be signed in to change notification settings

SwirtaB/POBR_Company-logo-recognition

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

POBR_Company-logo-recognition

The goal of this project is to implement processing pipeline for detecting logos in provided image. In this project I detect Microsft logo. All necessery algorithms are implemented from scratch.

Pipline steps

  • Load image to memory - OpenCV
  • Scale down to reduce further computations
  • Histogram equalization in HSV color space
  • Low-pass filtration using convolution in RGB space
  • Final conversion to HSV
  • Separate thresholding for every color in the logo (red, green, blue, yellow)
  • Segment detection using the flood fill algorithm. Calculation of descriptive features per segment.
  • (Optional) Closing (dilation followed by erosion). Recalculation of descriptive features if necessary.
  • Segments filtration based on descriptive features.
  • Identification using topological correspondence.

The project was aimed at practicing and implementing typical operations in the image recognition processing pipeline. Accordingly, the implementation is rather straight-forward.

Obtained results

About

Project within the subject POBR - Podstawy Przetwarzania Obrazów (basics of image processing). The goal is to create specific logo recognition pipeline implementing everything from scratch.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages