Skip to content

Instantly share code, notes, and snippets.

@nikhil9
Created October 31, 2012 16:59
Show Gist options
  • Save nikhil9/3988296 to your computer and use it in GitHub Desktop.
Save nikhil9/3988296 to your computer and use it in GitHub Desktop.
Opencv test snippet
#include <iostream>
#include <cv.h>
#include <highgui.h>
using namespace std;
int main()
{
cvNamedWindow("Hello", 1);
cvWaitKey(0);
cvDestroyWindow("Hello");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment