Commit 72697de8 authored by Gary Bradski's avatar Gary Bradski

docs

parent 114fe5cf
......@@ -4,6 +4,13 @@
#include <ctype.h>
#include <stdio.h>
void help()
{
printf("\nThis program illustrates Linear-Polar and Log-Polar image transforms\n"
"Call:\n"
"./polar_transforms [[camera number -- Default 0],[AVI path_filename]]\n\n"
);
}
int main( int argc, char** argv )
{
CvCapture* capture = 0;
......@@ -15,7 +22,7 @@ int main( int argc, char** argv )
capture = cvCaptureFromCAM( argc == 2 ? argv[1][0] - '0' : 0 );
else if( argc == 2 )
capture = cvCaptureFromAVI( argv[1] );
help();
if( !capture )
{
fprintf(stderr,"Could not initialize capturing...\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment