All Projects → geekquad → Pixel-Processing

geekquad / Pixel-Processing

Licence: MIT license
📷 This repository is focused on having various feature implementation of OpenCV in Python. The aim is to have a minimal implementation of all OpenCV features together, under one roof.

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to Pixel-Processing

Your-First-Contribution
You may learn how to make successful pull requests and get your first valid open source contribution by using this repository.
Stars: ✭ 24 (-80.33%)
Mutual labels:  hacktoberfest2021
Invisible-Cloak-And-Magic-Wand-using-OpenCV
This is one of my OpenCV that is Computer Vision project named in vi . That is inspired from Harry potter Invisible Cloak
Stars: ✭ 16 (-86.89%)
Mutual labels:  opencv-python
o-fish-android
Android app for the Officer's Fishery Information Sharing Hub (O-FISH). The mobile app allows fisheries officers to document and share critical information gathered during a routine vessel inspection.
Stars: ✭ 19 (-84.43%)
Mutual labels:  hacktoberfest2021
Data Structures For Hacktoberfest
A repository to get started with open source and contribute in Hacktoberfest . You can add any data structures and algorithms code in the language of your choice.
Stars: ✭ 16 (-86.89%)
Mutual labels:  hacktoberfest2021
Lets-go-Code
Welcome to Open Source! 👨‍💻 Make your Hacktoberfest 2021 contributions here. 👕
Stars: ✭ 13 (-89.34%)
Mutual labels:  hacktoberfest2021
Hacktoberfest
Hacktoberfest 2021 you can add anything like simple programs or projects
Stars: ✭ 15 (-87.7%)
Mutual labels:  hacktoberfest2021
striverSDESheet
A Complete Solution of the well known 'Striver SDE Sheet ' in C++. Feel Free To Contribute in this repository with more optimized code and comments. This Repository is also having the tag of #hacktoberfest #hacktoberfest2021
Stars: ✭ 75 (-38.52%)
Mutual labels:  hacktoberfest2021
Hactoberfest2021-Cpp
Any one can add their programs here ,but program should not be repeated.
Stars: ✭ 22 (-81.97%)
Mutual labels:  hacktoberfest2021
DJITelloOpticalControl
Autonomous navigation and data collection for Tello using mainly OpenCV's ArUco libraries.
Stars: ✭ 24 (-80.33%)
Mutual labels:  opencv-python
Insta flters with python
With this program you can add hat & glass on your face(it's support multiple faces)
Stars: ✭ 21 (-82.79%)
Mutual labels:  opencv-python
vue-datamaps
It is a Vue port of the javascript-based DataMaps
Stars: ✭ 14 (-88.52%)
Mutual labels:  hacktoberfest2021
Hacktoberfest2021 beginner
This Repository is for Hacktoberfest absolute beginners guide
Stars: ✭ 97 (-20.49%)
Mutual labels:  hacktoberfest2021
Awesome Python Scripts
🚀 Curated collection of Awesome Python Scripts which will make you go wow. Dive into this world of 360+ scripts. Feel free to contribute. Show your support by ✨this repository.
Stars: ✭ 198 (+62.3%)
Mutual labels:  hacktoberfest2021
navio
Navio is a program to create and manage linux containers. This project exists only for study purposes, so feel free to contribute :)
Stars: ✭ 14 (-88.52%)
Mutual labels:  hacktoberfest2021
pwsh-prelude
PowerShell “standard” library for supercharging your productivity. Provides a powerful cross-platform scripting environment enabling efficient analysis and sustainable science in myriad contexts.
Stars: ✭ 26 (-78.69%)
Mutual labels:  hacktoberfest2021
Python Scripts
It contains all the Python Programs, whether it's a GUI, basic, Data Structures, etc. It's a collection of some great Python scripts from basic to advance levels for automating some monotonous tasks.
Stars: ✭ 23 (-81.15%)
Mutual labels:  hacktoberfest2021
gofuzz
Fast as Flash Web URL Fuzzing tool written in golang.
Stars: ✭ 31 (-74.59%)
Mutual labels:  hacktoberfest2021
vidpipe
Video data processing pipeline using OpenCV
Stars: ✭ 33 (-72.95%)
Mutual labels:  opencv-python
Awesome-Clone
A curated list of AWESOME clones made with react,vue,svelte
Stars: ✭ 37 (-69.67%)
Mutual labels:  hacktoberfest2021
Repo-Excluded-From-HacktoberFest-2021
Know a bit of python & need pr for hacktoberfest ? come join us in the journey
Stars: ✭ 17 (-86.07%)
Mutual labels:  hacktoberfest2021

Image Processing OpenCV

image

License: MIT made-with-python Open Source Love svg1 PRs Welcome contributions welcome   GitHub contributors Maintenance

GitHub forks GitHub Repo stars

This repository is focused on having various feature implementations of OpenCV in Python.

About OpenCV:

OpenCV (Open Source Computer Vision Library) is an open-source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in commercial products. Right now, OpenCV supports a lot of algorithms related to Computer Vision and Machine Learning and it is expanding day-by-day.

OpenCV-Python is the Python API of OpenCV. It combines the best qualities of OpenCV C++ API and Python language.

Overview:

OpenCV is a huge library. One can get lost while reading specific feature documentation and its implementation. So, the repository aims to have a minimal implementation of all OpenCV features together, under one roof.

How to Contribute? Let's Get Started:

Step 1. Create a Copy of this Repository

To work on an open-source project, you will first need to make your copy of the repository. To do this, you should fork the repository and then clone it so that you have a local working copy.

Fork 🍴 this repo. Click on the Fork button at the top right corner.

With the repository forked, you’re ready to clone it so that you have a local working copy of the codebase.

Clone the Repository

To make your local copy of the repository you would like to contribute to, let’s first open up a terminal window.

We’ll use the git clone command along with the URL that points to your fork of the repository.

  • Open the Command Prompt
  • Type this command:
git clone https://github.com/your_username/Image-Processing-OpenCV

Step 2: Creating a New Branch

It is important to branch the repository so that you can manage the workflow, isolate your code, and control what features make it back to the main branch of the project repository.

When creating a branch, you must create your new branch off of the master branch. To create a new branch, from your terminal window, follow:

git branch new-branch
git checkout new-branch

Once you enter the git checkout command, you will receive the following output:

Switched to branch 'new-branch'

Step 3: Contribute:

Make relevant changes. Add new algorithms. Add Readme files. Contribute in any way you feel like :)

Step 4: Commiting and Pushing:

Once you have modified an existing file or added a new file to the project, you can add it to your local repository, which we can do with the git add command.

git add filename or git add .

You can type the command git add -A or alternatively git add -all for all new files to be staged.

With our file staged, we’ll want to record the changes that we made to the repository with the git commit command.

The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is.

git commit -m "commit message"

At this point you can use the git push command to push the changes to the current branch of your forked repository:

git push --set-upstream origin new-branch

Step 5: Create Pull Request

At this point, you are ready to make a pull request to the original repository.

You should navigate to your forked repository, and press the “Compare & pull request” button on the page.

GitHub will alert you that you can merge the two branches because there is no competing code. You should add in a title, a comment, and then press the “Create pull request” button.

Step 6: CONGRATULATIONS 💥 👏 ☺️

You have made your contributions. Kudos to you!!


📂 Where to upload the files

  • Your files should be uploaded directly into the corresponding folder (For instance, if you wrote code for Object Tracking Implementation in Python, it goes inside the ObjectTracking folder along with a descriptive README.md )

  • Under no circumstances create new folders within the language folders to upload your code unless specifically told to do so.

    For any more issues and queries, please join our  Discord Server.

Feel free to reach out to us.

**Rememeber, collaboration is the key to open-source** 🌟✨

⚙️ Contribution Guidelines

Please go through the whole Contributing Guidelines here.

  • Make sure you do not copy codes from external sources because that work will not be considered. Plagiarism is strictly not allowed.
  • You can only work on issues that have been assigned to you.
  • If you want to contribute to an existing algorithm, we prefer that you create an issue before making a PR and link your PR to that issue.
  • If you have modified/added code work, make sure the code compiles before submitting.
  • Strictly use snake_case (underscore_separated) in your file_name and push it in the correct folder.
  • Do not update the README.md.

📖 Code Of Conduct

You can find our Code of Conduct here.

📝 License

This project follows the MIT License.

Please STAR 🌟 this repository if you liked it and had fun :)

😇 Maintainers!


Aditya Kumar Gupta

💻 🖋

Community

Thanks to our amazing contributors!

forthebadge forthebadge forthebadge forthebadge forthebadge forthebadge

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].