Setting Up Open CV 2.3 Visual Studio 2010
This tutorial will explain step by step how to setup Visual Studio 2010 with Open […]
This tutorial will explain step by step how to setup Visual Studio 2010 with Open […]
Playing a video with OpenCV is almost as easy as displaying a single picture. Th […]
Thresholding is an basic technique in which some objects are identified on image/videos with the […]
Consider the following sourcecode for reading an image from the local hard drive Example
In this we will see how to install OpenCV in Linux with Eclipse CDT plugin. […]
To create a slider, we call cvCreateTrackbar() and indicate which window we would like the […]
Smoothing Image effectively reduces the information content of the image by convolving it with a […]
Edge detection is the foundation practice with Computer Vision. To detect edges OpenCV has cvCanny […]
To input a live stream from a camera we have to call cvCreateCameraCapture(). The argument […]
The following code shows, how to count the video frames in an AVI file. Example
The cvFlip(, ) is used to flip image in OpenCV. Example
cvCanny Implements the Canny algorithm for edge detection. Parameters of functions are as : edges […]
Template matching is a technique in digital image processing for finding small parts of an […]
Step 1 Pr-requisites Python Numpy Matplotlib Download latest OpenCV release from sourceforge site and double-click […]
cvtColor Converts an image from one color space to another. Example Parameters src input image: […]
Convolution is a mathematical operation on two functions f and g. The function f and […]