Open ramakanth98 opened 1 year ago
Hello there! ππ» Welcome to the Awesome_Python_Scripts! πβ‘οΈ Thank you and congrats π for opening your very first issue in this project. Please adhere to our Code of Conduct. ππ» You may submit a PR if you like, make sure to follow our Pull Request Template. Feel free to get in touch with me through social media handles. Hope to see you there!π
Hello @ramakanth98, you can create this issue in other repository here. This topic doesn't belong here.
Given a dataset of images, we need to represent them using the bag of SIFT representation. This involves clustering SIFT descriptors into a visual word vocabulary, counting the frequency of descriptors in each cluster, and generating histograms of visual words as image representations. The goal is to efficiently represent images while retaining important visual information for use in computer vision tasks.
Given a 10-way image classification problem, we need to train 10 binary SVM classifiers using one-vs-all approach to classify test images. During testing, the classifier with the most confidently positive result is selected. The goal is to accurately classify test images using optimized C values for regularization strength.