Skip to content

Commit

Permalink
errors in samples/cpp removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharthk committed Dec 4, 2013
1 parent 01e1ccf commit 75b7655
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
6 changes: 5 additions & 1 deletion samples/cpp/cloning_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ float red, green, blue;

double low_t, high_t;

void source(int, int, int, int, void*);
void destination(int, int, int, int, void*);
void checkfile(char*);

void source(int event, int x, int y, int, void*)
{

Expand Down Expand Up @@ -304,7 +308,7 @@ void checkfile(char *file)
}
}

int main(int argc, char **argv)
int main()
{
cout << endl;
cout << "Cloning Module" << endl;
Expand Down
9 changes: 9 additions & 0 deletions samples/cpp/create_mask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ int minx,miny,maxx,maxy,lenx,leny;

int channel;

void mouseHandler(int, int, int, int, void*);

void mouseHandler(int event, int x, int y, int, void*)
{

Expand Down Expand Up @@ -123,6 +125,13 @@ void mouseHandler(int event, int x, int y, int, void*)

int main(int argc, char **argv)
{

if(argc != 2)
{
cout << "usage: " << argv[0] << " <input_image>" << endl;
exit(1);
}

Mat src = imread(argv[1]);

minx = INT_MAX; miny = INT_MAX; maxx = INT_MIN; maxy = INT_MIN;
Expand Down
11 changes: 4 additions & 7 deletions samples/cpp/npr_demo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,16 @@ using namespace cv;

int main(int argc, char* argv[])
{
int num,type;

int flag = 0;

Mat I = imread(argv[1]);


if(argc < 2)
{
cout << "usage: " << argv[0] << " <Input image> " << endl;
exit(0);
}

int num,type;

Mat I = imread(argv[1]);

if(!I.data)
{
cout << "Image not found" << endl;
Expand Down

0 comments on commit 75b7655

Please sign in to comment.