Giter Site home page Giter Site logo

hand-recognition-using-opencv's Introduction

Hand-Recognition-using-OpenCV

YouTube ( https://www.youtube.com/watch?v=H9diqywK6NY ) This C++ code uses OpenCV version 2.4.10 with 'C' api and analyse hand gestures on Windows 7 under following ways -

1 - Convert RGB image (taken through web camera (IplImage* src)) into GRAYSCALE (IplImage* gray).

2 - Set ROI (Region Of Interest) using cvSetImageROI(src, cvRect(340,100,270,270)) function.

What is ROI :-> The idea behind the ROI is that, once it is set, functions that would normally operate on the entire image will instead act only on the subset of the image indicated by the ROI. All OpenCV functions will use ROI if set.

3 - Smooth the grayscale image using cvSmooth(gray,gray,CV_BLUR,(12,12),0)

Why do we use smoothing :-> It effectively reduces the information content of the image by convolving it with a Gaussian or other similar kernel function. It reduces the noise and OpenCV makes such convolutions exceptionally easy to do.

cann4

4 - Then we will threshold the smoothed image bu using cvThreshold(gray,gray,0,255,(CV_THRESH_BINARY_INV+CV_THRESH_OTSU)) function.

cann1

5 - At last we will find contours using contour detection , convex hull of palm region , convexity defects.

lol

hand-recognition-using-opencv's People

Contributors

udit043 avatar

Watchers

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