Source code from for my blog post, 'Object Tracking on the Raspberry Pi with C++, OpenCV, and cvBlob': http://wp.me/p1RD28-yW
// -*- C++ -*- | |
/* | |
* File: testcvblob.hpp | |
* Author: Gary Stafford | |
* Created: February 3, 2013 | |
*/ | |
#ifndef TESTCVBLOB_HPP | |
#define TESTCVBLOB_HPP | |
int DetectBlobsNoStillImage(); | |
int DetectBlobsShowStillImage(); | |
int DetectBlobsNoVideo(int captureWidth, int captureHeight); | |
int DetectBlobsShowVideo(int captureWidth, int captureHeight); | |
#endif /* TESTCVBLOB_HPP */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment