WaveMote


NameWaveMote JSON
Version 1.3.0.1 PyPI version JSON
download
home_pagehttps://github.com/bharathguntreddi3/WaveMote.git
SummaryA Gestures based Hand Controlled Virtual Mouse
upload_time2023-03-21 09:12:33
maintainer
docs_urlNone
authorBharath Guntreddi
requires_python
licenseMIT
keywords wavemote
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align=center>WaveMote🖱️👆</h1>
<h2 align=center>Version - 1.3.0.1</h2>
<!--This is an AI based Virtual Mouse controlled by our hand gestures and hand detection.-->

<img src="https://user-images.githubusercontent.com/95229816/185941431-83ba8fc6-0863-4a9b-a8ef-9908a29bd9ba.png">

<u><h2>The mouse is the one of the wonderfull inventions of the Human Computer Interaction(HCI) Technology.</h2></u>
<h3>Currently we are using wired or may be wireless mouses,In real time cases some computers may not support for a physical mouse or may some users may be dealth with some hand problems or handicap and cannot use physical mouse, so this Hand controlled AI Virtual Mouse can be used to overcome this problem. Making a user to control the mouse by reducing the computer human interaction.</h3>

<h1>FUNCTIONALITIES:</h1>
<h4> -> This was built using the openCV-python and mediapipe for Detecting and processing the image and mediapipe an open source cross-platform developed by google for media processing and ready-to-use ML solutions for computer vision tasks.</h4>
<h4> -> Our Hand Controlled Virtual mouse can able to move the mouse anywhere on the screen and can able to perform the click operation.</h4>
<h4> -> Our Index finger can be used to move the mouse over the screen.</h4>
<h4> -> When Our Index finger and Thumb come close to each other or touch each other then it performs the click operation.</h4>
<h4> -> And the PyautoGUI for programmatically control the mouse and keyboard.</h4>

* Installation and Functions

```console
pip install WaveMote
```
```python
import WaveMote as wm # pip install WaveMote
wm.mouse()
```

```python
import WaveMote as wm # pip install WaveMote
wm.DetectFace()
```

<h2>Now coming to the code part </h2>
The Libraries that need to be installed are written in the requirements.txt file

```text
opencv-python - 4.6.0.66
numpy - 1.23.1
matplotlib - 3.5.2
mediapipe - 0.8.10.1
pyautogui - 0.9.53
pillow - 9.2.0
```

### Install the following necessary pip
```sh
pip install opencv-python
pip install numpy
pip install matplotlib
pip install mediapipe
pip install PyautoGUI
pip install PIL
```

### The actual working of the mouse is based on the Hand Landmarks which can be viewed and controlled by opencv and mediapipe.
### Our hand contains a total of 21 landmarks.
![hand_landmarks](https://user-images.githubusercontent.com/95229816/186465439-9253c685-9561-474d-aa79-5e5baa874256.png)

<!-- <h1>Checkout the Demo Below : 👇</h1> -->
<h4>At First The mouse pointer movement is very bad and horrible to see so, I have added a **smoothening** factor that makes the mouse pointer move like a feather. </h4>

```python
smoothening = 9
clocx = plocx + (index_x - plocx) /smoothening
clocy = plocy + (index_y - plocy) /smoothening
# you can multiply or divide with the smotthening
```

<h3>If any necessary commits are required to increase the elegance of this repo! i'm always open for a PR.</h3>

### <h2>With this signing off..!!,BHARATH GUNTREDDI ..🤞</h2>

<!-- <video controls autplay muted src="https://user-images.githubusercontent.com/95229816/186448935-4ab29a18-92eb-4e71-ad99-fd8970ee12d6.mp4" /> -->





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bharathguntreddi3/WaveMote.git",
    "name": "WaveMote",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "WaveMote",
    "author": "Bharath Guntreddi",
    "author_email": "guntreddibharath@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/7a/7b/b8591a3a9167524d42132ab50b61aab22d1c31032ab78d3489ba1cafed85/WaveMote-1.3.0.1.tar.gz",
    "platform": null,
    "description": "<h1 align=center>WaveMote\ud83d\uddb1\ufe0f\ud83d\udc46</h1>\n<h2 align=center>Version - 1.3.0.1</h2>\n<!--This is an AI based Virtual Mouse controlled by our hand gestures and hand detection.-->\n\n<img src=\"https://user-images.githubusercontent.com/95229816/185941431-83ba8fc6-0863-4a9b-a8ef-9908a29bd9ba.png\">\n\n<u><h2>The mouse is the one of the wonderfull inventions of the Human Computer Interaction(HCI) Technology.</h2></u>\n<h3>Currently we are using wired or may be wireless mouses,In real time cases some computers may not support for a physical mouse or may some users may be dealth with some hand problems or handicap and cannot use physical mouse, so this Hand controlled AI Virtual Mouse can be used to overcome this problem. Making a user to control the mouse by reducing the computer human interaction.</h3>\n\n<h1>FUNCTIONALITIES:</h1>\n<h4> -> This was built using the openCV-python and mediapipe for Detecting and processing the image and mediapipe an open source cross-platform developed by google for media processing and ready-to-use ML solutions for computer vision tasks.</h4>\n<h4> -> Our Hand Controlled Virtual mouse can able to move the mouse anywhere on the screen and can able to perform the click operation.</h4>\n<h4> -> Our Index finger can be used to move the mouse over the screen.</h4>\n<h4> -> When Our Index finger and Thumb come close to each other or touch each other then it performs the click operation.</h4>\n<h4> -> And the PyautoGUI for programmatically control the mouse and keyboard.</h4>\n\n* Installation and Functions\n\n```console\npip install WaveMote\n```\n```python\nimport WaveMote as wm # pip install WaveMote\nwm.mouse()\n```\n\n```python\nimport WaveMote as wm # pip install WaveMote\nwm.DetectFace()\n```\n\n<h2>Now coming to the code part </h2>\nThe Libraries that need to be installed are written in the requirements.txt file\n\n```text\nopencv-python - 4.6.0.66\nnumpy - 1.23.1\nmatplotlib - 3.5.2\nmediapipe - 0.8.10.1\npyautogui - 0.9.53\npillow - 9.2.0\n```\n\n### Install the following necessary pip\n```sh\npip install opencv-python\npip install numpy\npip install matplotlib\npip install mediapipe\npip install PyautoGUI\npip install PIL\n```\n\n### The actual working of the mouse is based on the Hand Landmarks which can be viewed and controlled by opencv and mediapipe.\n### Our hand contains a total of 21 landmarks.\n![hand_landmarks](https://user-images.githubusercontent.com/95229816/186465439-9253c685-9561-474d-aa79-5e5baa874256.png)\n\n<!-- <h1>Checkout the Demo Below : \ud83d\udc47</h1> -->\n<h4>At First The mouse pointer movement is very bad and horrible to see so, I have added a **smoothening** factor that makes the mouse pointer move like a feather. </h4>\n\n```python\nsmoothening = 9\nclocx = plocx + (index_x - plocx) /smoothening\nclocy = plocy + (index_y - plocy) /smoothening\n# you can multiply or divide with the smotthening\n```\n\n<h3>If any necessary commits are required to increase the elegance of this repo! i'm always open for a PR.</h3>\n\n### <h2>With this signing off..!!,BHARATH GUNTREDDI ..\ud83e\udd1e</h2>\n\n<!-- <video controls autplay muted src=\"https://user-images.githubusercontent.com/95229816/186448935-4ab29a18-92eb-4e71-ad99-fd8970ee12d6.mp4\" /> -->\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Gestures based Hand Controlled Virtual Mouse",
    "version": "1.3.0.1",
    "split_keywords": [
        "wavemote"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c041c2ef73fcd269b091ef2f159372283ea2ed7a6c73ab616884cd317a2604ba",
                "md5": "d8f69afcd013e1c857fb12c8c6ea105d",
                "sha256": "9c389491c47ed60f139e97499d5e5401c68bccfbd8bb9f1c186990ea04e7479d"
            },
            "downloads": -1,
            "filename": "WaveMote-1.3.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d8f69afcd013e1c857fb12c8c6ea105d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 5434,
            "upload_time": "2023-03-21T09:12:29",
            "upload_time_iso_8601": "2023-03-21T09:12:29.320917Z",
            "url": "https://files.pythonhosted.org/packages/c0/41/c2ef73fcd269b091ef2f159372283ea2ed7a6c73ab616884cd317a2604ba/WaveMote-1.3.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a7bb8591a3a9167524d42132ab50b61aab22d1c31032ab78d3489ba1cafed85",
                "md5": "d02204ecd0948758a4d8a41a066176fe",
                "sha256": "f7a337249b0ff3481c607b9a34db45cfdd37b1afdd1c540a2f4b9fbcda348aa8"
            },
            "downloads": -1,
            "filename": "WaveMote-1.3.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d02204ecd0948758a4d8a41a066176fe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 5488,
            "upload_time": "2023-03-21T09:12:33",
            "upload_time_iso_8601": "2023-03-21T09:12:33.640090Z",
            "url": "https://files.pythonhosted.org/packages/7a/7b/b8591a3a9167524d42132ab50b61aab22d1c31032ab78d3489ba1cafed85/WaveMote-1.3.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-21 09:12:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "bharathguntreddi3",
    "github_project": "WaveMote.git",
    "lcname": "wavemote"
}
        
Elapsed time: 0.07920s