How should I preform the feature extraction for a logo image?

2 vues (au cours des 30 derniers jours)
hamida
hamida le 5 Nov 2022
Réponse apportée : Aastha le 14 Mai 2025
I have 2 logo images, from them one logo is a fake logo and another is a real logo. The fake logo has a dark color backgroung but the real logo doesn't and now i need to do fearture extraction on these images but I do't know which mehod is best for this perpose. I need to extract a numberic value from these images.
Please someone guide me what should I do.
Real logos:
Fake logos:
  1 commentaire
hamida
hamida le 6 Nov 2022
Image Analyst, Sir do you have any idea about it?

Connectez-vous pour commenter.

Réponses (1)

Aastha
Aastha le 14 Mai 2025
As I understand, you are aiming to extract a numeric value from images of real and fake banknotes in order to classify them.
One approach is to crop the same region around the logo in both real and fake banknotes and use the "ssim" function in MATLAB to compute a similarity score between the banknote logo under consideration and that of a real banknote. This will yield a single numeric value representing the similarity to the reference logo. You may refer to the following MATLAB code snippet to do so:
[ssimval, ssimmap] = ssim(image_under_consideration, reference_image);
The "ssimmap" output is of the same size as the input image and contains a pixel-wise similarity, providing a more detailed comparison.
You may refer to the MathWorks documentation of "ssim" function for reference:
A second approach involves using CNN regression model to predict a numeric value for each image. For reference, kindly refer to the example lined below:
Hope this is helpful!

Catégories

En savoir plus sur Image Processing and Computer Vision dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by