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.
Showing posts with label image processing. Show all posts
Showing posts with label image processing. Show all posts
Unknown
1:46 AM
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.
Unknown
1:44 AM
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.
Unknown
1:42 AM
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[])
{
#include "cv.h"
#include "cxcore.h"
#include "highgui.h"
#include < math.h >
int main(int argc, char* argv[])
{
Unknown
1:40 AM
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.).
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.).
Unknown
1:39 AM
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