All Projects → codePerfectPlus → ComputerVision-Essentials

codePerfectPlus / ComputerVision-Essentials

Licence: MIT license
Computer Vision Essentials in Python Programming Language 🎉

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to ComputerVision-Essentials

udacity-cvnd-projects
My solutions to the projects assigned for the Udacity Computer Vision Nanodegree
Stars: ✭ 36 (+28.57%)
Mutual labels:  face-detection, opencv-python, contour-detection
Look4Face
Demo of Face Recognition web service
Stars: ✭ 23 (-17.86%)
Mutual labels:  image-recognition, face-detection
image processing
image-processing exercises.
Stars: ✭ 25 (-10.71%)
Mutual labels:  face-detection, opencv-python
Contactless-Attendance-System
✨ A Contactless Attendance System where your face is identified for Attendance.
Stars: ✭ 20 (-28.57%)
Mutual labels:  image-recognition, face-detection
Image-Processing-in-Python
This repository contains the links to the article that I wrote on Medium pertaining to Image processing.
Stars: ✭ 23 (-17.86%)
Mutual labels:  face-detection, opencv-python
Computer-Vision
Cool Vision projects
Stars: ✭ 51 (+82.14%)
Mutual labels:  face-detection, opencv-python
Image-Detection-Samples
This sample app supports "Building a MVP with Face recognition and AR" and "Quest of a Hero part 2" presentations as well as it has two different possibilities to build face detection mechanism. The first one is OpenCV based and the second one is by means of Camera 2 API
Stars: ✭ 36 (+28.57%)
Mutual labels:  image-recognition, face-detection
Insta flters with python
With this program you can add hat & glass on your face(it's support multiple faces)
Stars: ✭ 21 (-25%)
Mutual labels:  face-detection, opencv-python
Opencv Face Filters
Snapchat-like Face Filters in OpenCV
Stars: ✭ 51 (+82.14%)
Mutual labels:  image-recognition, face-detection
Sod
An Embedded Computer Vision & Machine Learning Library (CPU Optimized & IoT Capable)
Stars: ✭ 1,460 (+5114.29%)
Mutual labels:  image-recognition, face-detection
cam-track
Windows, Unix, Raspberry Pi Computer python program to Track Camera X, Y Movements and Convert to Camera Pointing Position. Useful for Stabilization or Robotics Course Correction
Stars: ✭ 27 (-3.57%)
Mutual labels:  template-matching, opencv-python
object detector
Object detector from HOG + Linear SVM framework
Stars: ✭ 24 (-14.29%)
Mutual labels:  face-detection, opencv-python
facial-landmarks
Facial landmarks detection with OpenCV, Dlib, DNN
Stars: ✭ 25 (-10.71%)
Mutual labels:  face-detection, opencv-python
Caire
Content aware image resize library
Stars: ✭ 9,783 (+34839.29%)
Mutual labels:  face-detection, edge-detection
Age-Prediction
This Project is an applicaton based on Computer vision and Machine learning implementation using regression supervised classification.
Stars: ✭ 26 (-7.14%)
Mutual labels:  face-detection, opencv-python
Sign-Language-App
Training a model to recognize Sign Language then running inference on the Webcam
Stars: ✭ 25 (-10.71%)
Mutual labels:  image-recognition, opencv-python
Face-Detection-and-Tracking
Computer Vision model to detect face in the first frame of a video and to continue tracking it in the rest of the video. This is implemented in OpenCV 3.3.0 and Python 2.7
Stars: ✭ 24 (-14.29%)
Mutual labels:  face-detection, opencv-python
BlurryFaces
A tool to blur faces or other regions in images and videos 🤡🔍
Stars: ✭ 58 (+107.14%)
Mutual labels:  face-detection, opencv-python
PlayerDetection
Player detection and ball detection in football matches using image processing(opencv).
Stars: ✭ 50 (+78.57%)
Mutual labels:  image-recognition, opencv-python
FaceRecog
Realtime Facial recognition system using Siamese neural network
Stars: ✭ 47 (+67.86%)
Mutual labels:  face-detection, opencv-python

Computer Vision Essentials

Introduction

According to wikipedia -

Computer vision is an interdisciplinary scientific field that deals with how computers can gain high-level understanding from digital images or videos. From the perspective of engineering, it seeks to understand and automate tasks that the human visual system can do.

Computer vision tasks include methods for acquiring, processing, analyzing and understanding digital images, and extraction of high-dimensional data from the real world in order to produce numerical or symbolic information, e.g. in the forms of decisions.

Read More ...

Used Libraries/Packages

  • OpenCV - OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library.
  • PixelLib - PixelLib is a library created for performing image and video segmentation using few lines of code.
  • CVLib - A simple, high level, easy-to-use open source Computer Vision library for Python.
  • Dlib - Dlib is a general purpose cross-platform software library written in the programming language C++.
  • PIL/Pillow - Python Imaging Library is a free and open-source additional library for the Python programming language that adds support for opening, manipulating, and saving many different image file formats
  • Keras - Keras is the most used deep learning framework among top-5 winning teams on Kaggle.
  • Tensorflow - TensorFlow is a free and open-source software library for machine learning.
  • Pytessarct - Python-tesseract is an optical character recognition (OCR) tool for python. That is, it will recognize and “read” the text embedded in images.
  • scikit-image - scikit-image is an open-source image processing library for the Python programming language. It includes algorithms for segmentation, geometric transformations, color space manipulation, analysis, filtering, morphology, feature detection, and more.
  • Matplotlib - Matplotlib is a cross-platform, data visualization and graphical plotting library for Python and its numerical extension NumPy.

How To Run

  • Install python 3.6+

Create virtual envionment with pipenv.

python -m pip install pipenv
pipenv install -r requirements.txt
pipenv shell

NOTE- check the guide for tenosflow installation for your CPU/GPU. for using tensorflow-gpu install the CUDA-11.0 and necessary libraries.

Large models and files hosted on google drive. For downloading them run utils.py

python utils.py

Usage

Computer vision allows the computer to perform the same kind of tasks as humans with the same efficiency. There are a two main task which are defined below:

  • Object Classification - In the object classification, we train a model on a dataset of particular objects, and the model classifies new objects as belonging to one or more of your training categories.
  • Object Identification - In the object identification, our model will identify a particular instance of an object - for example, parsing two faces in an image and tagging one as Virat Kohli and other one as Rohit Sharma.

Support

contributers

Roadmap

Contributing

Before submitting a bug, please do the following:

Perform basic troubleshooting steps:

  • Make sure you are on the latest version. If you are not on the most recent version, your problem may have been solved already! Upgrading is always the best first step.
  • Try older versions. If you are already on the latest release, try rolling back a few minor versions (e.g. if on 1.7, try 1.5 or 1.6) and see if the problem goes away. This will help the devs narrow down when the problem first arose in the commit log.
  • Try switching up dependency versions. If the software in question has dependencies (other libraries, etc) try upgrading/downgrading those as well.

Authors and acknowledgment

License

For open source projects,Under MIT License.

Citation

Stéfan van der Walt, Johannes L. Schönberger, Juan Nunez-Iglesias, François Boulogne, Joshua D. Warner, Neil Yager, Emmanuelle Gouillart, Tony Yu and the scikit-image contributors. scikit-image: Image processing in Python. PeerJ 2:e453 (2014) https://doi.org/10.7717/peerj.453

Coelho, L.P. 2013. Mahotas: Open source software for scriptable computer vision. Journal of Open Research Software 1(1):e3, DOI: http://dx.doi.org/10.5334/jors.ac

Author

Extra Downloads

  1. FaceDetection Caffee Models
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].