{"id":23990437,"url":"https://github.com/tritonix711/gesture-scroll-control","last_synced_at":"2025-04-30T01:54:13.202Z","repository":{"id":250184273,"uuid":"833689310","full_name":"Tritonix711/Gesture-Scroll-Control","owner":"Tritonix711","description":"Gesture Scroll Control is a Python application that lets you control scrolling on your desktop using hand gestures. With a simple hand movement, you can navigate through web pages and apps without needing to touch your mouse or keyboard. It's designed for ease of use and hands-free navigation.","archived":false,"fork":false,"pushed_at":"2024-07-25T16:13:26.000Z","size":9,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-30T01:54:07.764Z","etag":null,"topics":["automation","computer-vision","gesture-recognition","hand-tracking","mediapipe","opencv","python","scrolling"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tritonix711.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-25T14:45:27.000Z","updated_at":"2025-03-24T00:46:22.000Z","dependencies_parsed_at":"2024-07-25T19:10:08.469Z","dependency_job_id":null,"html_url":"https://github.com/Tritonix711/Gesture-Scroll-Control","commit_stats":null,"previous_names":["sd338/gesture-scroll-control","tritonix711/gesture-scroll-control"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tritonix711%2FGesture-Scroll-Control","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tritonix711%2FGesture-Scroll-Control/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tritonix711%2FGesture-Scroll-Control/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tritonix711%2FGesture-Scroll-Control/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tritonix711","download_url":"https://codeload.github.com/Tritonix711/Gesture-Scroll-Control/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251626888,"owners_count":21617741,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","computer-vision","gesture-recognition","hand-tracking","mediapipe","opencv","python","scrolling"],"created_at":"2025-01-07T18:19:17.224Z","updated_at":"2025-04-30T01:54:13.142Z","avatar_url":"https://github.com/Tritonix711.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gesture Scroll Control\n\nGesture Scroll Control is a Python application that lets you control scrolling on your desktop using hand gestures. With a simple hand movement, you can navigate through web pages and apps without needing to touch your mouse or keyboard. It's designed for ease of use and hands-free navigation.\n\n## Features\n- **Interactive Gesture Control**: Use hand gestures to scroll up or down.\n- **User-Friendly Design**: Intuitive and easy to use.\n- **Cross-Platform**: Works on Windows, macOS, and Linux.\n\n## Getting Started\n\n### Prerequisites\n- **Python**: Ensure you have Python 3.7 or later installed on your computer. You can download Python from the [official website](https://www.python.org/downloads/).\n- **Git**: Make sure Git is installed on your computer for cloning the repository. You can download Git from the [official website](https://git-scm.com/downloads).\n\n### Installation Steps\n\n1. **Clone the Repository**\n   \n   Open a terminal or command prompt and run the following command:\n   ```bash\n   git clone https://github.com/sd338/Gesture-Scroll-Control.git\n   ```\n\n   This will create a folder named `Gesture-Scroll-Control` with all the project files.\n\n2. **Navigate to the Project Directory**\n\n   Change to the project directory using the following command:\n   ```bash\n   cd path/to/Gesture-Scroll-Control\n   ```\n\n3. **Set Up a Virtual Environment (Recommended)**\n\n   Creating a virtual environment helps manage project-specific dependencies.\n\n   - **Windows**:\n     ```bash\n     python -m venv env\n     .\\env\\Scripts\\activate\n     ```\n\n   - **macOS/Linux**:\n     ```bash\n     python3 -m venv env\n     source env/bin/activate\n     ```\n\n4. **Install Dependencies**\n\n   Install the required Python packages using pip:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n### Running the Application\n\nTo start the application, use the following command:\n```bash\npython main.py\n```\n\nThis will activate your webcam and start recognizing hand gestures to control scrolling.\n\n## Project Structure\n\n- **gesture_control.py**: Handles hand gesture recognition and scrolling actions.\n- **gui.py**: Contains the code for the graphical user interface.\n- **LICENSE**: License file.\n- **main.py**: Entry point of the application that integrates `gesture_control.py` and `gui.py`.\n- **README.md**: This file.\n- **requirements.txt**: Lists all the Python packages required for this project.\n\n## Contributing\n\nContributions are welcome! If you have any ideas, suggestions, or find any bugs, feel free to reach out. You can find my contact information on my [GitHub profile](https://github.com/sd338).\n\n### How to Contribute\n\n1. **Fork the Repository**\n\n   Click the \"Fork\" button at the top-right corner of the repository page.\n\n2. **Clone Your Fork**\n\n   ```bash\n   git clone https://github.com/your-username/Gesture-Scroll-Control.git\n   ```\n\n3. **Create a New Branch**\n\n   ```bash\n   git checkout -b feature-or-bugfix-name\n   ```\n\n4. **Make Your Changes**\n\n5. **Commit and Push Your Changes**\n\n   ```bash\n   git add .\n   git commit -m \"Description of the feature or bug fix\"\n   git push origin feature-or-bugfix-name\n   ```\n\n6. **Submit a Pull Request**\n\n   Go to the original repository and click the \"New Pull Request\" button.\n\n## License\n\nMIT License\n\n```\nMIT License\n\nCopyright (c) 2024 Samanta Das\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n\n---\n\n### Contact\n\nFor any questions or support, please connect with me on Twitter or LinkedIn. You can find links to these profiles on my [GitHub profile](https://github.com/sd338).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftritonix711%2Fgesture-scroll-control","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftritonix711%2Fgesture-scroll-control","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftritonix711%2Fgesture-scroll-control/lists"}