Deep Learning Biomedical Image Segmentation In the Biomedical field segmented images can be used for anomaly detection, diagnosing diseases, computer-integrated surgery, treatment planning, studying anatomical structures, and much more.
Machine Learning (ML) Kohonen Neural Network The Kohonen Neural Network (KNN) also known as self organizing maps is a type of unsupervised artificial neural network. This network can be used for clustering analysis and visualization of high-dimension data.
Algorithms Geometric Hashing Geometric hashing is a computer vision technique used to detect geometric features in images and matching them to a database with such features. What makes geometric hashing stand out is that it can detect overlapping objects.
Hashing Fibonacci Hashing In this article, an underlooked kind of hash function is to be discussed, the Fibonacci Hashing. It is another form of multiplicative hashing function that is related to the golden ratio.
C++ Extract integers from string and store in vector using C++ In this article we will learn how to extract integers from a string and store it in a vector using C++.