All Projects → jrobchin → Computer Vision Basics With Python Keras And Opencv

jrobchin / Computer Vision Basics With Python Keras And Opencv

Full tutorial of computer vision and machine learning basics with OpenCV and Keras in Python.

Projects that are alternatives of or similar to Computer Vision Basics With Python Keras And Opencv

Powerlaw
Stars: ✭ 379 (-2.07%)
Mutual labels:  jupyter-notebook
Dawp
Jupyter Notebooks and code for Derivatives Analytics with Python (Wiley Finance) by Yves Hilpisch.
Stars: ✭ 383 (-1.03%)
Mutual labels:  jupyter-notebook
Vae cf
Variational autoencoders for collaborative filtering
Stars: ✭ 386 (-0.26%)
Mutual labels:  jupyter-notebook
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (-1.55%)
Mutual labels:  jupyter-notebook
2020 benfords
Stars: ✭ 384 (-0.78%)
Mutual labels:  jupyter-notebook
Latent 3d points
Auto-encoding & Generating 3D Point-Clouds.
Stars: ✭ 385 (-0.52%)
Mutual labels:  jupyter-notebook
Daily Deeplearning
🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial
Stars: ✭ 381 (-1.55%)
Mutual labels:  jupyter-notebook
100daysofmlcode
Stars: ✭ 387 (+0%)
Mutual labels:  jupyter-notebook
2019 Cs109a
https://harvard-iacs.github.io/2019-CS109A/
Stars: ✭ 384 (-0.78%)
Mutual labels:  jupyter-notebook
Quantumcomputingbook
Companion site for the textbook Quantum Computing: An Applied Approach
Stars: ✭ 386 (-0.26%)
Mutual labels:  jupyter-notebook
Vpgnet
VPGNet: Vanishing Point Guided Network for Lane and Road Marking Detection and Recognition (ICCV 2017)
Stars: ✭ 382 (-1.29%)
Mutual labels:  jupyter-notebook
Human Activity Recognition Using Cnn
Convolutional Neural Network for Human Activity Recognition in Tensorflow
Stars: ✭ 382 (-1.29%)
Mutual labels:  jupyter-notebook
Supervisely Tutorials
🌈 Tutorials for Supervise.ly
Stars: ✭ 385 (-0.52%)
Mutual labels:  jupyter-notebook
Yolo V5
🎨 Pytorch YOLO v5 训练自己的数据集超详细教程!!! 🎨 (提供PDF训练教程下载)
Stars: ✭ 379 (-2.07%)
Mutual labels:  jupyter-notebook
Ufldl Tutorial
Deep Learning and Unsupervised Feature Learning Tutorial Solutions
Stars: ✭ 385 (-0.52%)
Mutual labels:  jupyter-notebook
Python4datascience.ch
从0开始接触Python处理数据科学问题。包含Python0基础入门、科学计算工具入门、数学与计算机基础入门、统计学习入门。
Stars: ✭ 381 (-1.55%)
Mutual labels:  jupyter-notebook
Transformers Tutorials
Github repo with tutorials to fine tune transformers for diff NLP tasks
Stars: ✭ 384 (-0.78%)
Mutual labels:  jupyter-notebook
Dorn
Stars: ✭ 386 (-0.26%)
Mutual labels:  jupyter-notebook
Multimodal Emotion Recognition
A real time Multimodal Emotion Recognition web app for text, sound and video inputs
Stars: ✭ 384 (-0.78%)
Mutual labels:  jupyter-notebook
Njucs Course Material From Yikaizhang
南京大学计算机系 课程资料 作业 代码 实验报告 NJU-CS 课程分享计划 🍚​
Stars: ✭ 383 (-1.03%)
Mutual labels:  jupyter-notebook

Tutorial: Computer Vision and Machine Learning with Python, Keras and OpenCV

Includes a demonstration of concepts with Gesture Recognition.

This was created as part of an educational for the Western Founders Network computer vision and machine learning educational session.

Demo

The final demo can be seen here and below:

Contents

notebook.ipynb contains a full tutorial of basic computer vision and machine learning concepts, including:

  • What computers see
  • Image Filters and Functions
    • Blurring
    • Dilating
    • Erosion
    • Canny Edge Detectors
    • Thresholding
  • Background Subtraction Techniques
    • Using a background image to find differences
    • Using motion based background subtraction algorithms
  • Contours
    • Finding and sorting contours
  • Tracking
  • (Deep) Neural Networks
  • (Deep) Convolutional Neural Networks
  • Demo Project: Gesture Recognition
    • Extracting the subject
    • Tracking the hand
    • Collecting data
    • Building the Neural Network
    • Preparing Data for Training
    • Training the Network
    • Plotting Model History

Note: Please check the issues on this repo if you're having problems with the notebook.

Installation Instructions ('$' means run this in terminal/command prompt, do not type '$')

Windows:

Mac/Linux: Manually installing packages

Mac:

  • For Miniconda, open terminal and navigate to the directory you downloaded Miniconda3-latest-MacOSX-x86_64.sh to and run:

      $ bash Miniconda3-latest-MacOSX-x86_64.sh
    
  • For Anaconda, double click the Anaconda3-5.0.1-MacOSX-x86_64.pkg file you downloaded

Linux:

  • For Miniconda, open a terminal and navigate to the directory you downloaded Miniconda3-latest-Linux-x86_64.sh to and run:

      $ bash Miniconda3-latest-Linux-x86_64.sh
    
  • For Anaconda, open a terminal and navigate to the directory you downloaded Anaconda3-5.0.1-Linux-x86_64.sh to and run:

      $ bash Anaconda3-5.0.1-Linux-x86_64.sh
    

All Platforms:

  • Create and activate a Python 3.5 conda environment called cv.

      $ conda create -n cv python=3.5
    
      $ source activate cv
    
  • Install Numpy (http://www.numpy.org/)

      $ conda install numpy
    
  • Install Matplotlib (https://matplotlib.org/)

      $ conda install matplotlib
    
  • Install Keras (https://keras.io/)

      $ conda install keras
    
    • This should also install tensorflow
  • Install h5py (http://www.h5py.org/)

      $ conda install h5py
    
  • Install Jupyter Notebook (http://jupyter.org/)

      $ conda install jupyter notebook
    
  • Install IPython (https://ipython.org/)

      $ conda install ipython
    
  • Install OpenCV3 (https://opencv.org/)

      $ conda install -c conda-forge opencv 
    

    if the import cv2 does not work with this install, try instead:

      $ conda install -c https://conda.anaconda.org/menpo opencv3
    
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].