Category Computer Vision

393. Different Approaches For Image Classification

▮ Image Classification When doing image classification tasks, there are mainly 2 approaches; Traditional classification and Metric Learning. Here are the differences between the two approaches. ▮ Traditional Classification The traditional classification approach classifies images by outputting the probability for…

362. Image Segmentation using K-means Clustering

Clustering Depending on your data and objective, you may not even have to train a deep-learning model for image segmentation. Here is one way to apply segmentation using Kmeans clustering. Implementation from sklearn.cluster import KMeans from matplotlib.image import imread import…

357. One-Shot Learning Basics

What It Does One-Shot learning can be useful when you want to identify someone just by giving the predicting model a single picture of them. Similarity Function A model can perform One-shot learning by learning a “similarity” function. When the…