Open Source
opencv.txt
Associated article: The OpenCV Library
Tags: Database Open Source Parallel Design
Published source code accompanying the article by Gary Bradski in which he discusses OpenCV, an open-source, computer-vision library for extracting and processing meaningful data from images.
The OpenCV Library
by Gary Bradski
Listing One
//Collect background mean and std of each pixel for background differencing
void captureBackground(IplImage *IvidIm, IplImage *IstdFP,
IplImage *Iu, IplImage *Istd)
{
int height = IvidIm->height;
int width = IvidIm->width;
int ...


