Showing posts with label image processing. Show all posts
Showing posts with label image processing. Show all posts

Linking and configuring OpenCV with Visual C++ .Net

In my eailer posts I have written how to Link Opencv Library in VC++ visula studio 6 and in Bloodshed's DEVC++. Now we will learn how to Link and configue OpenCV with Visual C++ .Net.

Continue Reading

Face Recognition using OpenCV2 and HaarCascade an Intro Part 2

After learning theory a bit in part1 now we lear how we can detect face in an image. Later we will extend this to detecting face from web cam and avi file. The code is very simple. We will load a image of a person in  IplImage structure.
Continue Reading

Linking OpenCV 2 library in DEVC++

In my earlier post I have discussed how to link OpenCV 1.x with devC++. But with latest release of OpenCV version ie. OpenCV 2 or higher the earlier method will not work. This because, OpenCV have changed the directory structure. So lets learn how to link OpenCV 2 or higher library version in DevC++ IDE.
Continue Reading

Image Proseesing - Extacting Shapes using OpenCV

// This is a program to find SQUARE shape and Circle shape

#include "cv.h"
#include "cxcore.h"
#include "highgui.h"
#include < math.h >
int main(int argc, char* argv[])
{

Continue Reading

Linking OpenCV library in DEVC++

Configuration of Dev-C++

OpenCV - OpenCV is a computer vision library originally developed by Intel. It is free for commercial and research use under the open source BSD license.OpenCV provides cross-platform middle-to-high level API that includes about 300 C functions and a few C++ classes. Also there are constantly improving Python bindings to OpenCV, see interfaces/swig/python and samples/python. OpenCV has no strict dependencies on external libraries, though it can use some (such as libjpeg, ffmpeg, GTK+ etc.).

Continue Reading

OPENCV Tutorial - Basic operations for images Dilate/Erode

Let us do some more image processing in openCV. In this turorial we will do Dilate/Erode operation. This is a basic Morphological Operations.  To learn more about  Morphological Operations I have found a very good tutorial. You can find it here

Continue Reading