Creating Virtual Directory in Apache

Usually, I write about robotics, computer vision and machine learning in this website but today I decided to make back of my website in my PC and I felt it’s not bad ti know a bit about XAMPP and especially Apache. 1) First, download and install XAMPP 2) Then edit “/opt/lampp/etc/httpd.conf” and uncomment the line:

[…]

Creating Virtual Directory in Apache Read More »

Connecting PS4 Controller dualshock via Bluetooth in Ubuntu

PS4 controllers work out of the box in Ubuntu with USB cable but I was looking for a way to get it work via Bluetooth as well. After installing a couple of packages I found “ds4drv”. To install it:

Then you have to either add the user to the list of root user or simply run

Connecting PS4 Controller dualshock via Bluetooth in Ubuntu Read More »

HARRIS Corner detector explained

 

HARRIS Corner detector explained Read More »

Naive Bayes Classifier Example with Python Code

In the below example I implemented a “Naive Bayes classifier” in python and in the following I used “sklearn” package to solve it again: and the output is:

Naive Bayes Classifier Example with Python Code Read More »

Density-Based Spatial Clustering (DBSCAN) with Python Code

DBSCAN (Density-Based Spatial Clustering of Applications with Noise) is a data clustering algorithm It is a density-based clustering algorithm because it finds a number of clusters starting from the estimated density distribution of corresponding nodes. It starts with an arbitrary starting point that has not been visited. This point’s epsilon-neighborhood is retrieved, and if it

Density-Based Spatial Clustering (DBSCAN) with Python Code Read More »