The goal of cursorControl is to enable a disabled person to use the technology the same way a non-disabled person would do.
cursorControl is an event-driven application and designed to be modular so that more functionalities can be added to it with greater flexibility. There are basically three parts of the system -
- Input buffers
- Event processors
- Controllers
For example, to enable a disabled person who have no voluntary movement under the neck to control a mouse cursor we will use a video input buffer, a mouse mover event processor, and a mouse movement controller. Video input buffer stores the input from input device (webcam), the mouse mover event processor processes the frames and set the mouse contollers state to desired cursor location, and finally the mouse controller moves the cursor.
We can extend features like controlling the keyboard with voice command with audio input buffer and implementing a keyboard controller similar way the mouse mover controller is implemented.
Note: this application originated from one of my course project whose source code can be found in docs\cursorControl_old.cpp.
For build and install run the following command:
build.bat
if chocolatey is installed you can run following command and it will install dependednt software:
build.bat dev
For build and install run the following command:
build.sh
The installed application can be found in the install directory under source directory.
+-- cursorControl
! +-- install
! ! +-- bin
! ! ! +-- cursorControl.exe
! ! +-- include
! ! +-- lib
MSbulid | Cmake | OpenCV | Boost |
---|---|---|---|
15.9.21.664 | 3.10 | 4.5.1 | 1.76.0 |
Checking version
cursorControl: control devices virtually
options:
-V, --version print version
--run run the program
🤝 thanks for considering contributing to this project.
- any kind of question can be discussed in slack channel
This software is GPLv3 lcensed.