• Stars
    star
    128
  • Rank 279,759 (Top 6 %)
  • Language
    Jupyter Notebook
  • License
    MIT License
  • Created about 4 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

📷 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.

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

More Repositories

1

AlgoBook

A beginner-friendly project to help you in open-source contributions. Data Structures & Algorithms in various programming languages Please leave a star ⭐ to support this project! ✨
Jupyter Notebook
293
star
2

Color-Recognizer

An application that provides color names and HTML/RGB mappings as output.
HTML
17
star
3

quiz.ai

An Encrypted Automatic Multiple-Choice Question Generator for Self-Assessment Using Natural Language Processing
HTML
13
star
4

Fraud-Detection

A Person Of Interest identifier based on ENRON CORPUS data.
Jupyter Notebook
12
star
5

TEXTGEN

The main task of the character-level language model is to predict the next character given all previous characters in a sequence of data, i.e. generates text character by character.
Jupyter Notebook
10
star
6

StandSum

A PyPI package that does extractive text summarizer using Cosine Methods in NLTK.
Python
9
star
7

Deep-Dream

A computer vision program which uses a convolutional neural network to find and enhance patterns in images, thus creating a dream-like hallucinogenic appearance in the deliberately over-processed images.
Jupyter Notebook
5
star
8

Lung-Cancer-Detection

Data Science Bowl Challenge (DSB3)
Jupyter Notebook
3
star
9

Facial-Recognition-with-PCA

Face Recognition Implementation using PCA, eigenfaces, and SVM
Jupyter Notebook
3
star
10

Feature-Scaling

A package that can transform features by scaling each feature into a given range. This is more lightweight and easy to use than sklearn.preprocessing.MinMaxScaler
Python
3
star
11

Handwritten-Digit-MLP-Classification

Using Multi Layer Perceptron to build the model. Classifies the handwritten digits of the MNIST database with around 98% accuracy.
Jupyter Notebook
2
star
12

binogauss

A package that can calculate Gaussian as well as Binomial distributions.
Python
2
star
13

Titanic-Survival-Exploration

Very basic data exploration of the Titanic Dataset.
Jupyter Notebook
2
star
14

Customer-Segments

Analyzing a dataset containing data on various customers' annual spending amounts of diverse product categories for internal structure. Doing so would equip the distributor with insight into how to best structure their delivery service to meet the needs of each customer.
Jupyter Notebook
2
star
15

Lasso-Ridge-Regression-and-Elastic_Net-Regularization-from-Scratch

Basic implementation of Lasso, Ridge Regression and Elastic-Net Regularization.
Jupyter Notebook
2
star
16

Pencil-Sketch

Converts regular RGB images into Pencil-sketch.
Python
1
star
17

Time-Series-Prediction-from-Scratch

Training a simple RNN to do time-series prediction. Given some set of input data, it will be able to generate a prediction for the next time step.
Jupyter Notebook
1
star
18

Random-Forest-from-Scratch

A basic implementation of the Random Forest Classifier from Scratch and using Seaborn to find important features.
Jupyter Notebook
1
star
19

Boston-Housing

Evaluating the performance and predictive power of a model. Cross questioned several concepts of ML for better understanding.
Jupyter Notebook
1
star
20

Flower-Prediction

Basic Iris Flower Prediction. Learning how to host ML models using Flask and deploy it using Heroku.
HTML
1
star
21

CIFAR-10

Object Recognition in Images. This project uses CNN for the classification and recognition tasks.
Jupyter Notebook
1
star
22

AdaBoost-from-Scratch

A basic implementation of AdaBoost algorithm from Scratch.
Jupyter Notebook
1
star
23

Phyllotaxis

A just for fun project.
Python
1
star
24

Text-Learning

Basic usage of NLTK. Implementation of concepts like Stemmer, TfIdf, and text.CountVectors
Jupyter Notebook
1
star
25

Automatic-Essay-Scoring

A recurrent neural network method for determining the relationship between an essay and its grade. Using Long-Short Term Memory networks to represent the meaning of texts to demonstrate that a fully automated framework is able to achieve results.
Jupyter Notebook
1
star
26

Classifying-Fashion-Clothes

Fashion-MNIST is a dataset of Zalando's article images, consisting of a training set of 60,000 examples and a test set of 10,000 examples. Each example is a 28x28, gray-scale image, associated with a label from 10 classes.
Jupyter Notebook
1
star