Hi,
What packages do I need to install openCV on ubuntu lucid 10.04 ? Do I need to do anything else to be able to compile a simple c example like setting an env variable or changing the path?
Is gcc a good compiler for openCV?
The example I'm trying to compile:
int main( int argc, char** argv ) {
IplImage* img = cvLoadImage( argv[1] );
cvNamedWindow( “Example1”, CV_WINDOW_AUTOSIZE );
cvShowImage( “Example1”, img );
cvWaitKey(0);
cvReleaseImage( &img );
cvDestroyWindow( “Example1” );
}
Thanks