01
~/python

Captive Portals: How to automate them

What are Captive Portals? If you have ever been to a hotel which provides wifi facilities, when you tried to connect to it, you would be redirected to a web page. This web page is known as Captive Portal . Captive Portals are used in va…

Captive-Portal
02
~/python

Custom Object Detection using TensorFlow Lite

TensorFlow Lite: Enhancing Mobile and Embedded Machine Learning TensorFlow Lite stands at the forefront of deploying machine learning models on mobile and embedded devices, embodying Google's cutting-edge adaptation of its broader Tenso…

thumbnail
03
~/programming

Object detection using OpenCV

In one of my previous articles, I elaborated on using OpenCV with python to switch on a user’s webcam, and to display the live feed. As a fun-ish Python project, I also created a GUI to pick out a spot in the feed and display its colour…

Featured image for article on using OpenCV for face recognition
04
~/programming

Integrating OpenCV with a Tkinter GUI in Python

OpenCV is a pretty handy tool while working with image processing and computer vision. It’s a large open-source library which can be accessed in a variety of programming languages, including Python. It has also been used for video analy…

Integrating OpenCV with a Tkinter GUI in Python
05
~/programming

RESTful APIs

The concept of APIs is pretty fascinating when starting to code, because it allows us to integrate stuff into our projects which we would not want to develop ourselves. An API in short is just an interface for software applications to c…

RESTful APIs
06
~/python

Determinant of matrices using Python

In this article, I will teach you to find the determinant of a matrix using the Python programming language. Prerequisites: In programming (Python) - Lists and operations on lists Concept and understanding of Recursion In Maths - A basi…

Matrix_No.s