<< Chapter < Page Chapter >> Page >

Opencv

The OpenCV (Open Source Computer Vision) library provided the implementations for many of the methods explained in this module. Detailed explanations of the functionality are available on the OpenCV website.

Why use color isolation?

Many computer vision methods exist for feature detection (such as detecting faces or characters in an image). We wanted the possibility to track multiple types of objects with our virtual theremin. Feature detection does not allow for this flexibility. We also needed our object recognition to be fast in order to drive real time audio. Feature detection algorithms work, but are known to be a bit slow. In order to address these concerns, we opted to use color to track objects. When the user launches our program, the user must select the object they wish to track. The color of this object is stored by the program. Every future frame retrieved by the webcam is scanned for all pixels within range of that color, allowing for the isolation of the object after a few steps.

Color spaces

Rgb

Cameras operate in the RGB color space. In the RGB color space, images store three channels of information: red, green, and blue. For each channel, 8 bits of data is stored. RGB images use additive color mixing: zeros in all channels represents black and 255 in each channel represents white. Although this color space is easy to use, highlight and shadow affect RGB values. Therefore, tracking using RGB values is not a realistic option to track a constant color.

Hsv

Our virtual theremin first converts RGB to HSV. HSV is an alternative color space that uses three different channels of information: Hue, Saturation, and Value. The HSV color space represents colors according to the figure below. Unlike RGB, highlight and shadow do not cause changes in hue values. Therefore, it is possible to track an object in variable lighting conditions using HSV. The conversion to HSV from RGB is as follows:

HSV Equations HSV Equations HSV Equations
HSV Color Space
The HSV Color Space

If the above formula results in H less than 0, it is converted to H+360.

Object detection

Gaussian blur

Before any detection is attempted, a slight blur is applied to the image using a Gaussian kernel. This blur smoothes out any noise in the initial image. The blurred image is then converted to the HSV color space.

Original Image
Original Image
HSV Image
HSV Image
Original and HSV Images

Image thresholding

The user initially selects a point in the image. The HSV value at this point is used as the center color in the threshold range. Using the values set by the margin sliders, the HSV image is converted to a binary image by thresholding the HSV image to the specified range around the selected color.

Thresholded Image
Thresholded Image

Object isolation

Depending on the environment, the thresholding image may or may not contain other noise. The example photo was taken against a solid background of a different color. Therefore, there is no other noise visible in this image. However, in order to determine which portion of the thresholded image is our desired object, we assume that noise is present.

We first find all of the contours from the edges in the thresholded image. For each found contour, we compute the area enclosed. We assume that the contour enclosing the largest area is the desired object. Once this specific contour has been determined, we fit an ellipse to the contour. From this ellipse, we can determine the angle of the major axis and the position of the center. The isolated image, shown below, has this ellipse drawn in red around the contour shaded in blue.

Isolated Image
Isolated Image

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Elec 301 projects fall 2013. OpenStax CNX. Sep 14, 2014 Download for free at http://legacy.cnx.org/content/col11709/1.1
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Elec 301 projects fall 2013' conversation and receive update notifications?

Ask