IIIIIII Open CV
IIIIIII Open CV
IIIIIII Open CV
Basics of Imageprocessing
Overview
Basics of Imageprocessing
Introduction
GrayScale Color
Basics of Imageprocessing
Introduction......
Basics of Imageprocessing
History
Basics of Imageprocessing
Definitions
Basics of Imageprocessing
D.E.Marr Theory...
Basics of Imageprocessing
What is an Image ??
Array of numbers whose values are proportional to brightness
Basics of Imageprocessing
Sample Pixel Values
Basics of Imageprocessing
Image Teriminology
Basics of Imageprocessing
Classification of Images
Basics of Imageprocessing
Introduction to OpenCV
Basics of Imageprocessing
Sample Program in Opencv
Write a program in gedit and save as first.cpp
Compile the program with g++ -o <objname> <filename.cpp>
pkg-config libs cflags opencv
Run the program ./<objname> <CMDLINEARGS>
Sample Program
#include highgui.h
#include "cv.h"
Basics of Imageprocessing
Sample Program Camera with OpenCV
#include <iostream>
#include <cv.h>
#include <highgui.h>
using namespace std;
char key;
int main()
{
cvNamedWindow("Camera_Output", 1); //Create window
CvCapture* capture = cvCaptureFromCAM(CV_CAP_ANY);
//Capture using any camera connected to your system
while(1){
//Create infinte loop for live streaming