Git Product home page Git Product logo

computer-vision-basics-with-python-keras-and-opencv's Introduction

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

GitAds

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:

Option 1: Exact source package installs

  • Use the spec-file.txt provided, install identical packages

      $ conda create -n [ENV_NAME] --file spec-file.txt # create new env with same packages
    

    or, if you have an existing environment

      $ conda install -n [ENV_NAME] --file spec-file.txt # install packages into an existing env
    
  • Then activate the environment

      $ activate cv
    
  • Install OpenCV3 (https://opencv.org/)

    • Download whl file https://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv

    • Download “opencv_python 3.4.0+contrib cp35 cp35m win32.whl” or “opencv_python 3.4.0+contrib cp35 cp35m win_amd64.whl” for 32bit and 64bit respectively

    • Install package

      $ pip install [file path]
      

Option 2: Package installs

  • Using the environment.yml file provided, run

      $ conda create -n cv --file environment.yml
    

    or, if you have an existing environment

      $ conda install -n [ENV_NAME] --file environment.yml # install packages into an existing env
    
  • Activate the environment

      $ activate cv
    
  • Install OpenCV3 (https://opencv.org/)

    • Download whl file https://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv

    • Download “opencv_python 3.4.0+contrib cp35 cp35m win32.whl” or “opencv_python 3.4.0+contrib cp35 cp35m win_amd64.whl” for 32bit and 64bit respectively

    • Install the package

      $ pip install [file path]
      

Option 3: Manually installing packages

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
    

Both:

  • 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
    

computer-vision-basics-with-python-keras-and-opencv's People

Contributors

jrobchin avatar luizhdinizf avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.