opencv part 1
i was finally able to start off to my very first step into the world of Computer vision programming…
well its not that simple and its not that hard… but to think it through its what i call… programming synergy,
Gucci Wallets!!! yeah boy!
#include <iostream>
#include <cv.h>#include <highgui.h>
using namespace std;
int main(int argc,
Cheap Louis Vuitton Handbags, char* argv[]){ if(argc != 2) { cout<<"Usage: showimage imagefile"<<endl; return 1; } IplImage* image = cvLoadImage(argv[1]);
cvNamedWindow("My Window", CV_WINDOW_AUTOSIZE);
cvShowImage("My Window",
Louis Vuitton outlet, image);
cvWaitKey(0);
cvReleaseImage(&image); cvDestroyWindow("My Window");
return 0;
}