Write using your Eyes – Gaze controlled keyboard with Python and Opencv p.10
This is the final tutorial of the project “Gaze controlled keyboard with Python and Opencv”. The code is approximately 300 lines. I added the missing parts to the code, I improved the graphic of the keyboard and I made a few adjustments. I’m not going…
Play sounds – Gaze controlled keyboard with Python and Opencv p.9
In this tutorial we’re going to add sounds to our project. Especially we need a sound to tell us when the letter was pressed, because when we’re blinking to press the letter we can’t look at the screen at the same time. Also we’re adding…
Press a key by blinking eyes – Gaze controlled keyboard with Python and Opencv p.8
In this tutorial we’re now going to detect when we press a key by we blink our eyes.We don’t need to add almost anything new as we already we have the keyboard, or at least one part, and we already wrote the function to detect…
Virtual Keyboard 3 – Gaze controlled keyboard with Python and Opencv p.7
In the previous tutorial we learn how to create and display a virtual keyboard using opencv. We have now two files, a main.py file where we have the code for detecting the blinking and the gaze of our eyes, and we have a file where…
Virtual Keyboard 2 – Gaze controlled keyboard with Python and Opencv p.6
We will continue in this section with the creation of the Keyboard. We’re going to split the keyboard in two parts, so that we will be able to access each part of the keyboard by looking at some specific direction. For example if we want…
Virtual Keyboard – Gaze controlled keyboard with Python and Opencv p.5
We’re going to learn in this tutorial how to create a virtual keyboard using Opencv with Python. The idea is to display the Keys on the screen and light them up one at time. Once the key we want to press is lighted up, we…
Eye Gaze detection 2 – Gaze controlled keyboard with Python and Opencv p.4
We’re going to learn in this tutorial how to detect the gaze, and more specifically to detect if the eyes are looking to the left, the right or the center. To detect the gaze we need first to understand how the eye appears when it’s…
Eye Gaze detection 1 – Gaze controlled keyboard with Python and Opencv p.3
We are going to learn in this tutorial how to detect the gaze. Why do we need to detect the gaze? To answer to this question I need to explain to you how I plan to run the app.The idea is to see a keyboard…
Eye Blinking detection – Gaze controlled keyboard with Python and Opencv p.2
In this second part of the series “Gaze controlled keyboard” we’re going to detect when the Eye is blinking. We’re going to use this function later on to press the selected key on the virtual keyboard just by blinking our eyes. When is the eye…
Eye detection – Gaze controlled keyboard with Python and Opencv p.1
In this new video series “Gaze controlled keyboard” we’re going to create and app to control the keyboard trough our eyes using Python with Opencv, completely from scratch. The goal of such app is to write without using the hands. Such applications are really important…