Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Machine Learning by (19k points)

Does anyone know of recent academic work which has been done on logo recognition in images? Please answer only if you are familiar with this specific subject (I can search Google for "logo recognition" myself, thank you very much). Anyone who is knowledgeable in computer vision and has done work on object recognition is welcome to comment as well.

Please refer to the algorithmic aspects (what approach you think is appropriate, papers in the field, whether it should work(and has been tested) for real-world data, efficiency considerations) and not the technical sides (the programming language used or whether it was with OpenCV...) Work on image indexing and content-based image retrieval can also help.

1 Answer

0 votes
by (33.1k points)

You can use the Scale-invariant feature transform (SIFT) to detect the logo in an image. Most of the logo shape is constant, so it's easy to extract features from an image every time.

This algorithm detects corners from the logo. For example Nike’s logo, the two sharp ends would be detected first and then the more dark pixels will be detected. In this way, a logo is detected. 

On training, the model keeps remembering corners, on matching stage it finds the nearest neighbors for every feature in the database obtained during training. You will get extracted features in the end.

You can you Random sample consensus (RANSAC) to remove the wrong matches. You can perform transformation, rotation, and translation on the final logo matrix.

Extracting logos from an image can result in a distorted logo image. You can also use Conventional SIFT, which does not consider color information. Logos usually have constant colors, that’s why you might want to consider color information somehow.

 

Hope this answer helps.

Browse Categories

...